Introduction to Selenium
What is Selenium? Selenium is a portable software testing framework for web applications. Selenium provides a playback (formerly also recording) tool for authoring tests without the need to learn a test scripting Read more »
History of Selenium
History of Selenium Selenium was originally developed by Jason Huggins in 2004 as an internal tool at ThoughtWorks. Huggins was later joined by other programmers and testers at ThoughtWorks, before Paul Read more »
Components of Selenium
Selenium IDE Selenium IDE is a complete integrated development environment (IDE) for Selenium tests. It is implemented as a Firefox Add-On and available on Chrome Store recently, and allows recording, editing, and debugging tests. It Read more »
Architecture of Selenium WebDriver
Selenium History In 2004, Jason Huggins a software Engineer at ThoughtWorks created a program using JavaScript which was called as JavaScriptRunner to test web applications through script. It gained momentum Read more »
Locators in Selenium
What are Locators? Locator is a command that tells Selenium IDE which GUI elements ( say Text Box, Buttons, Check Boxes etc) its needs to operate on. Identification of correct Read more »
WebDriver Common Commands
Here are some of the WebDriver common commands used to access elements, browser navigation, getting browser or elements information. Instantiating Web Elements Before performing any action on any WebElement, we Read more »
Xpath: Contains fucntion
example: //input[contains(@aria-label,’Google Search’)][1] Read more »