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

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

Adding documentation to selenium project

selenium documentation

Selinium documention is available at seleniumhq.org/downloads in the javadocs links. We can import ... Read More

Multiple elements on a webpage with same xpath

multiple elements selenium

We can find multiple webelements on a webpage and save them in a list of webelements like this ``` ... 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

Differences Between Selenium and Qtp

Selenium

Difference between and Qtp. Selenium is a free tool while qtp or latest version uft is a based tool ... Read More

Handling list of elements in selenium

webelements list selenium

There are 3 ways to select a list of web elements 1.First method is to first select the outer box a ... Read More

Implict wait and page load timeouts

page load timeout selenium

Implicitly wait for 20 sec for elements to be present on webpage. ``` driver.manage().timeouts().i ... Read More

Reading from Properties file

properties file selenium

To read from a properties file we use the below commands ``` Properties prop = new Properties(); ... 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