In this blog, you will understand about one of the approach to write automation commands in Selenium WebDriver. A common approach used by most automation engineers is to use the generic selenium c…
Selenium WebDriver support different approaches to write automation commands while writing automated test scripts. In this blog we will understand about the implementation of click() sendKeys() …
In this blog, I am going to explain about "How to upload file using Java Robot Class and Selenium WebDriver?". To perform same I will use below HTML form which contains a file type input to…
In this blog, I am going to explain about "How to upload file using sendKeys() method of Selenium WebDriver?". To perform same I will use below HTML form which contains a file type input to…
We can perform cross browser testing using Selenium Webdriver. In cross browser testing we can run same Selenium automation programs on different web browser like Firefox, Chrome, IE, Safari, Opera.…
We can also run the Google Chrome web browser with addons/extensions using capabilities to perform automation testing.
We can also run the Firefox web browser with addons/extensions using capabilities to perform automation testing. Read about HOW TO CREATE .XPI FILE FROM ALREADY INSTALLED FIREFOX ADD-ON? Here is t…
We can perform data driven using excel file and save the test results into excel file with help of Apache POI library .
We can perform data driven using excel file with help of Apache POI library .
Here is the very basic program to get text from web element which is displayed on mouse over using Actions . In the below example I going to get text from the homepage of Hello Selenium which comes …
Actions: The Advanced User Interactions API includes following keyboard and mouse actions: Keyboard Actions: KeyDownAction - Holding down a modifier key. KeyUpAction - Releasing a modifier key.…
Actions: The Advanced User Interactions API is used to generate a sequence of actions. We can perform keyboard and mouse actions using Advanced User Interactions API. Here is a code snippet to…
Actions: The Advanced User Interactions API is a new, more comprehensive API for describing actions a user can perform on a web page.
We can perform data driven using excel file and save the test results into excel file with help of Apache POI library .
In this post we could learn about to select a option from a dropdown list.
Explicit Wait is a method in Selenium WebDriver to pause the script till defined element is not available on web page. When explicit wait method is called into a automation script then script will w…
Implicit Wait is a method in Selenium WebDriver to pause the script till defined time. When implicit wait method is called into a automation script then script will wait till defined time to execute…
In this post we could learn about to select a option from a dropdown list.
sendKeys method is basically used to type some content into an editable field. Sample code for sendKeys is: driver.findElement(By.name("q")).sendkeys("Free Selenium Training"…
clear() method is basically used to clear all content from editable field. Sample code for clear is: driver.findElement(By.name("q")).clear(); //where driver is the already defined We…