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…
We can perform data driven using excel file with help of Apache POI library .