Selenium IDE
Selenium IDE is an record and playback tool.Selenium is is the plugin for Firefox Browser Extension. It saves time for the tester from coding.The simple record and run is very familiar with novice user. By only clicking the record button “Selenium IDE” starts recording the activities and write the command by itself.Novice without heaving any […]
How to Identify Static And Dynamic Object in Selenium
Finding the location of the element is the main and important task in selenium to find out the element we need Object Identification in Selenium by the different properties. Target/Locator All the element present on the wave page will be identified using target or locator.Target or locator are used to identify the element present in […]
How to find the XPATH of an element to automate the element
XPATH is a way to identify the element by navigating the entire html source code and identify the element using back-end attribute. Syntax of XPATH // To go to entire html source code / Navigating from parent to child [ ] Attribute Declaration [ ] Navigating from child to parent @ Attribute annonation We can […]
Selenium WebDriver
WebDriver is an interface present in selenium jar file which consists of some browser specific method to perform operation on browser. Advantages Supports multiple browser Support secure network Supports secure network Supports multiple OS. Supports http protocol. Disadvantages Does not supports windows application. Selenium web driver consists of jar files jar files consists of core […]
Methods of the Selenium Web Element
Any element present on the web page is known as web element.Using find element we can identify element present in the web page.Once it is identified we need to perform operation on web element .Web element is a interface which contains some specific method to perform operation on web element. The following method are available […]
Selenium Actions class By the help of Webdriver to Perform User Actions
Selenium Actions present in Selenium WebDriver class which is used to perform user interaction operations.Like mouse mouse click ,double click drag and drop.Many a time we found that these operation are needed by Selenium WebDriver.To use this action class first we need to transfer the driver control to this class and then to perform action […]
Selenium gecko driver setup to run Firefox in Ubuntu or Windows
As Selenium is cross platform supported we can use it for the different environment as per our need .In this tutorial we will explain how to run the Firefox Browser Using Selenium. Step:1 Download the gicko driver from the below linnk for your system environment. Download the gecko driver from the following link. Step:2 Extract […]