We can have a modified version of the custom page load wait function in which we can run a while loo ... Read More
To add selenium documentation to any project go to its properties -> java build path and click clien ... Read More
We know everytime webdriver opens firefox it opens a new profile of its own . It does not open th ... Read More
Example of complete xpath is below.Complete xpaths are not recommened as if anything on the website ... Read More
We can extract an entire table element on a webpage from the table tag like ``` //table[@class= ... Read More
Selenium automates browsers and run in multiple browsers and operating systems. It cant automate des ... Read More
To check x and y coordinates of a WebElement on a web page we use the following commands. ``` int ... Read More
If we don't want te logs to appear in console of eclipse but instead want to save them somewhere we ... Read More
``` public static void takeScreenShot(){ // take screenshot File srcFile = ((TakesScreenshot)dr). ... Read More
When we initiate a new firefox driver object and run our program we sometimes see logs in co ... Read More