Selenium Webdriver
Tuesday, 20 June 2017
Implicit wait vs Explicit wait in Selenium Webdriver
›
Implicit wait is used to wait for fixed duration for all elements to be available. But ideally not all elements need fixed amount of time....
Friday, 8 July 2016
How to extract digits from a String in Java
›
Many times, we have to verify the numbers from a given string. Below Java code will help get the digits from the string. public String...
1 comment:
Monday, 4 July 2016
How to auto download a file in Selenium
›
When you try to download a file from a website in Selenium, window dialog may appear. But Selenium can not handle such native windows. We m...
How to find total number of rows and columns in a table in Selenium
›
We can use below XPATH expressions to find count of rows and columns in a table. //table//th - Find total number of columns in a table....
How to verify if text is present on a web page in Selenium
›
We can use below xpath selector to verify if the text is present on a web page in Selenium. //*[contains(text(),'text data')] N...
›
Home
View web version