Custom function to check if page has loaded or not-Version2

custom function page load selenium

We can have a modified version of the custom page load wait function in which we can run a while loo ... Read More

Selenium Documentation

Selenium Documentation

To add selenium documentation to any project go to its properties -> java build path and click clien ... Read More

Firefox profiles

firefox profiles selenium

We know everytime webdriver opens firefox it opens a new profile of its own . It does not open th ... Read More

Partial and complete xpaths

xpaths selenium

Example of complete xpath is below.Complete xpaths are not recommened as if anything on the website ... Read More

Handling webtables in selenium

webtables selenium

We can extract an entire table element on a webpage from the table tag like ``` //table[@class= ... Read More

Selenium - A brief overview

selenium overview history

Selenium automates browsers and run in multiple browsers and operating systems. It cant automate des ... Read More

Finding X and Y coordinates of an element

x and y coordinates selenium

To check x and y coordinates of a WebElement on a web page we use the following commands. ``` int ... Read More

Taking care of console logs using chrome driver

logs chrome driver selenium

If we don't want te logs to appear in console of eclipse but instead want to save them somewhere we ... Read More

Taking screenshots using selenium

screenshots selenium

``` public static void takeScreenShot(){ // take screenshot File srcFile = ((TakesScreenshot)dr). ... Read More

Removing firefox driver logs from eclipse console

firefox log selenium

When we initiate a new firefox driver object and run our program we sometimes see logs in co ... Read More