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…
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 .
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…
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.
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…
We can perform data driven using excel file with help of Apache POI library .
We can also run the Selenium Webdriver programs in Internet Explorer web browser using capabilities to perform automation testing.
Thread.sleep() method is used to pause the for defined time. Time is defined in milliseconds for this method.
We can also run the Selenium Webdriver programs in Internet Explorer web browser to perform automation testing.
We can also run the Selenium Webdriver programs in Google Chrome web browser using capabilities to perform automation testing.
We can also run the Selenium Webdriver programs in Google Chrome web browser to perform automation testing.
We can perform data driven in selenium webdriver using properties file.
We can also run the Selenium Webdriver programs in Firefox web browser using capabilities to perform automation testing. Here is the very basic program to run Selenium Webdriver programs in Firefox…