Most answered questions in Selenium

0 votes
1 answer

Login page test script using selenium and java in Eclipse IDE

Here is an example to login to ...READ MORE

Apr 23, 2018 in Selenium by Meci Matt
• 9,460 points
13,299 views
0 votes
1 answer

How to run Selenium test case file from command line?

You’ll need Selenium RC for this: http://seleniumhq.org/download/  And the ...READ MORE

Apr 23, 2018 in Selenium by Vardy
• 2,360 points
14,251 views
0 votes
1 answer

Differences between Selenium Remote Control and Selenium Server

Check the documentation outlining the different parts of ...READ MORE

Apr 23, 2018 in Selenium by king_kenny
• 3,710 points
631 views
0 votes
1 answer

How can I select a particular node within the XPath node sets by index?

There is no concept of 'i' in ...READ MORE

Apr 21, 2018 in Selenium by king_kenny
• 3,710 points
4,342 views
0 votes
1 answer

Not able to run WebDriver test with Google Chrome.

Firefox is just default browser for tests ...READ MORE

Apr 21, 2018 in Selenium by king_kenny
• 3,710 points
1,888 views
0 votes
1 answer

Need to scroll down for locating an Element with Selenium

There are a couple of options for ...READ MORE

Apr 21, 2018 in Selenium by king_kenny
• 3,710 points
12,559 views
0 votes
1 answer

Page Factory: StaleElementReference Exception

Usually, a StaleElementReferenceException is thrown when: 1. ...READ MORE

Apr 21, 2018 in Selenium by king_kenny
• 3,710 points
1,256 views
0 votes
1 answer

Error: FF Browser not working for Selenium test after update

Since Firefox's latest update to version 47.0, ...READ MORE

Apr 21, 2018 in Selenium by king_kenny
• 3,710 points
1,148 views
0 votes
1 answer

Need to control the file download dialog box in Mozilla Firefox

Well for Firefox, there is something called ...READ MORE

Apr 21, 2018 in Selenium by king_kenny
• 3,710 points
2,636 views
0 votes
1 answer

Opening Browser in Selenium

Here is the code to open the ...READ MORE

Apr 20, 2018 in Selenium by Meci Matt
• 9,460 points
405 views
0 votes
1 answer

Which is preferred more in Selenium Absolute or Relative XPath

Absolute XPath is the direct way to ...READ MORE

Apr 20, 2018 in Selenium by Meci Matt
• 9,460 points
4,154 views
0 votes
1 answer

Selenium 2.0 web driver Tutorials using .NET

Docs here have an example in C#: http://seleniumhq.org/docs/03_webdriver.html using ...READ MORE

Apr 20, 2018 in Selenium by Vardy
• 2,360 points
477 views
0 votes
1 answer

Running a Firebug within Selenium WebDriver (Selenium 2)

Create your profile in code and dynaically ...READ MORE

Apr 20, 2018 in Selenium by Vardy
• 2,360 points
553 views
0 votes
1 answer

How to open a browser windows silently in the background?

It is a little bit of a ...READ MORE

Apr 20, 2018 in Selenium by king_kenny
• 3,710 points
5,257 views
0 votes
1 answer

Install Selenium in a conda environment

Conda uses different channels to search for ...READ MORE

Apr 20, 2018 in Selenium by Vardy
• 2,360 points
4,549 views
0 votes
1 answer

Searching for the element with   symbol in selenium

Use Below: //div[@class='Tips' and text()='\u00a0'] READ MORE

Apr 20, 2018 in Selenium by Vardy
• 2,360 points
8,731 views
0 votes
1 answer

Selenium Tutorial

There are lots of channels for selenium ...READ MORE

Apr 20, 2018 in Selenium by king_kenny
• 3,710 points
386 views
0 votes
1 answer

What is difference the between Selenium and Celerity?

If you are talking about speed, use Celerity. If ...READ MORE

Apr 20, 2018 in Selenium by king_kenny
• 3,710 points
821 views
0 votes
1 answer

How to upload a resume to a website using selenium in python?

Use this code, this will help you: from ...READ MORE

Apr 20, 2018 in Selenium by Vardy
• 2,360 points
2,592 views
0 votes
1 answer

Browser supported by Selenium 2.0

Below Will help you: Opera: The OperaDriver supports Opera ...READ MORE

Apr 20, 2018 in Selenium by Vardy
• 2,360 points
595 views
0 votes
1 answer

Differences between Selenium IDE, Selenium RC and WebDriver

Selenium Ide is a Firefox plugin that ...READ MORE

Apr 19, 2018 in Selenium by Vardy
• 2,360 points
851 views
0 votes
1 answer

30 min Wait on a page and then perform any Operation using Selenium Webdriver

Implicit wait tells webdriver to poll the ...READ MORE

Apr 19, 2018 in Selenium by Shubham
• 13,490 points
2,631 views
0 votes
1 answer

Not able to set ChromeDriver to run a TestNG programm

You have not set the system properties ...READ MORE

Apr 19, 2018 in Selenium by Meci Matt
• 9,460 points
2,241 views
0 votes
1 answer

what do you mean by browser's native support w.r.t to Selenium WebDriver?

From Selenium v3 onwards, every browser vendor ...READ MORE

Apr 18, 2018 in Selenium by king_kenny
• 3,710 points
3,715 views
0 votes
1 answer

Selenium for testing browser plugins

Yup..Installing browser plugins is possible with Selenium. ...READ MORE

Apr 18, 2018 in Selenium by king_kenny
• 3,710 points
2,161 views
0 votes
1 answer

Newbie here. Can someone please summarize the difference between selenium1 and selenium2?

Selenium 1 included Selenium RC, Selenium IDE ...READ MORE

Apr 18, 2018 in Selenium by king_kenny
• 3,710 points
559 views
0 votes
1 answer

Using Selenium, is it possible to verify if text is present inside a PDF which is loaded by the browser?

Reading PDF contents is not a functionality ...READ MORE

Apr 18, 2018 in Selenium by king_kenny
• 3,710 points
16,877 views
0 votes
1 answer

How to use Enter/Return Key in Selenium

You can use the below code: import org.openqa.selenium.Keys WebEle ...READ MORE

Apr 18, 2018 in Selenium by Meci Matt
• 9,460 points
2,641 views
0 votes
1 answer

findElement(By.xpath()) not working using Selenium WebDriver

element = findElement(By.xpath("//*[@test-id='test-username']"); element = findElement(By.xpath("//input[@test-id='test-username']"); (*) - any ...READ MORE

Apr 18, 2018 in Selenium by code_ninja
• 6,290 points
8,798 views
0 votes
1 answer

Using XPath preceding-sibling correctly

Since all buttons are on the same ...READ MORE

Apr 18, 2018 in Selenium by Vardy
• 2,360 points
13,292 views
0 votes
1 answer

Need to integrate my Selenium tests with REST APIs

Selenium is good enough for this purpose...You ...READ MORE

Apr 18, 2018 in Selenium by king_kenny
• 3,710 points
2,364 views
0 votes
1 answer

What purpose does this "::" solve in selenium?

Well this is not a Selenium functionality, ...READ MORE

Apr 18, 2018 in Selenium by king_kenny
• 3,710 points
346 views
0 votes
1 answer

Do we have an IE-based Selenium IDE for tests?

Well Selenium has an IDE only for ...READ MORE

Apr 18, 2018 in Selenium by king_kenny
• 3,710 points
432 views
0 votes
1 answer

Page Object Pattern in Selenium WebDriver

Check below links: Documentation: Page Objects and PageFactory  Page Object Design Pattern  Other ...READ MORE

Apr 17, 2018 in Selenium by Vardy
• 2,360 points
810 views
0 votes
1 answer

Handling calendar popup using Selenium WebDriver

You are selecting wrongly your elements in ...READ MORE

Apr 17, 2018 in Selenium by Shubham
• 13,490 points
4,187 views
0 votes
1 answer

Difference between “selenium server” and “selenium server standalone” jars

If you use WebDriver API, then you ...READ MORE

Apr 17, 2018 in Selenium by becky
2,049 views
0 votes
1 answer

Downloading *.jar file from http:// seleniumhq.org using Selenium WebDriver

For Selenium Standalone Server: profile.setPreference("browser.helperApps.neverAsk.saveToDisk", "application/java-archive"); If downloading ...READ MORE

Apr 17, 2018 in Selenium by Shubham
• 13,490 points
5,969 views
0 votes
1 answer

Which Firefox version is compatible with Selenium 3.6.0

You would need to use GeckoDriver if ...READ MORE

Apr 17, 2018 in Selenium by king_kenny
• 3,710 points
1,300 views
0 votes
1 answer

Installing Selenium WebDriver on Mac OS

For Installing if you use homebrew , you can ...READ MORE

Apr 17, 2018 in Selenium by Vardy
• 2,360 points
6,006 views
0 votes
1 answer

'The connection has timed out Error using Selenium Webdriver

Try to use implicit waits to ensure ...READ MORE

Apr 17, 2018 in Selenium by niki
7,254 views
0 votes
1 answer

Binding Selenium Javadoc with eclipse

First, you need to go to:- project properties ...READ MORE

Apr 17, 2018 in Selenium by Meci Matt
• 9,460 points
1,769 views
0 votes
1 answer

InvalidSelectorException while using CSS Locator- contains() in Selenium WebDriver

The main problem with your code is ...READ MORE

Apr 17, 2018 in Selenium by Meci Matt
• 9,460 points
11,159 views
0 votes
1 answer

How to find element using classname and tagname using selenium webdriver?

Use the below code or you can ...READ MORE

Apr 17, 2018 in Selenium by king_kenny
• 3,710 points
12,079 views
0 votes
1 answer

How to Create Object Repository in Selenium Web Driver?

Try POM Model (Page object model). Refer ...READ MORE

Apr 17, 2018 in Selenium by adam
1,700 views
0 votes
1 answer

XPath for the elements with no ID or Name in Selenium Webdriver

Use like this or similar to this: //div[@id="top-level-menu-item-3"]/div[@class="filter-label"] //div[@id="top-level-menu1"] ...READ MORE

Apr 17, 2018 in Selenium by Meci Matt
• 9,460 points
6,893 views
0 votes
1 answer

Which is better CSS or Xpath? Considering performance and cross browser testing

According to css has better performance compared ...READ MORE

Apr 17, 2018 in Selenium by Shubham
• 13,490 points
2,127 views
0 votes
1 answer

Impilicit wait vs Explicit wait vs Fluent wait

Implicit wait: Your telling the WebDriver the ...READ MORE

Apr 14, 2018 in Selenium by king_kenny
• 3,710 points
4,038 views
0 votes
1 answer

How to select an Object by its class in Selenium?

When it comes to Selenium, XPath will ...READ MORE

Apr 14, 2018 in Selenium by king_kenny
• 3,710 points
765 views
0 votes
1 answer

Using XPath with Selenium-Java code

There is a minor syntax error in ...READ MORE

Apr 14, 2018 in Selenium by king_kenny
• 3,710 points
801 views
0 votes
1 answer

Diff between WebDriver listeners and TestNG listeners?

This is not a very important concept ...READ MORE

Apr 14, 2018 in Selenium by king_kenny
• 3,710 points
6,129 views