Most answered questions in Selenium

0 votes
1 answer

Upgrading or Updating existing version of Selenium Java Project

I downloaded the java client driver from ...READ MORE

Apr 13, 2018 in Selenium by commander
1,966 views
0 votes
1 answer

What is the difference between thoughtworks.selenium and openqa.selenium selenium?

thoughtworks.selenium is the original Selenium (aka Selenium 1, ...READ MORE

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

First 10 search results displayed from www.seleniumhq.org

Try this: int count= selenium.getXpathCount("xpath=//a[@onmousedown and @href ...READ MORE

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

Downloading and Saving a file to a desired location using Selenium Webdriver

You can set the default download location ...READ MORE

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

Need some advise on the preferred element locators with Selenium WebDriver

Well let's not call it "Hierarchy". But, ...READ MORE

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

Selenium Alternatives: Is there a tool like Selenium for testing web pages but which does not involve coding.

I'm guessing you've tried Selenium IDE already. ...READ MORE

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

Selenium: working of Fluentwaits

Basically a FluentWait is used to define ...READ MORE

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

Can Selenium testing be done on gui less server? I heard of something called headless browser testing, but not sure.

Yes, you are indeed rigth. For Selenium ...READ MORE

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

How can I Install Selenium IDE in Firefox

Selenium IDE works with all Firefox versions, ...READ MORE

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

How do i change the location where my file gets downloaded in Selenium Webdriver and firefox driver?

There are a couple of errors there. ...READ MORE

Apr 13, 2018 in Selenium by nsv999
• 5,500 points
5,891 views
0 votes
1 answer

I need to find a web element using CSS

The element should be located with any ...READ MORE

Apr 13, 2018 in Selenium by nsv999
• 5,500 points
684 views
0 votes
1 answer

Getting exception with grid: (WebDriverException: The path to the driver executable must be set....)

You should start the hub and node ...READ MORE

Apr 13, 2018 in Selenium by nsv999
• 5,500 points
2,259 views
0 votes
1 answer

Will Selenium v3.8.1 work with latest versions of Firefox?

Yup it should work with the latest ...READ MORE

Apr 12, 2018 in Selenium by nsv999
• 5,500 points
491 views
0 votes
1 answer

JARS for using Selenium class functions in code

Yup. I'm not sure, exactly which JARS ...READ MORE

Apr 12, 2018 in Selenium by nsv999
• 5,500 points
1,435 views
0 votes
1 answer

Previous versions of Selenium JARs

You can download all the versions of ...READ MORE

Apr 12, 2018 in Selenium by Meci Matt
• 9,460 points
3,602 views
0 votes
1 answer

“selenium java” jar file vs. “Selenium server standalone” jar file

Explanation below. Also, there is a similar ...READ MORE

Apr 10, 2018 in Selenium by nsv999
• 5,500 points
5,648 views
0 votes
1 answer

Using gettext() method for the specific element using Selenium WebDriver

Mistake is that u r printing the ...READ MORE

Apr 10, 2018 in Selenium by Vardy
• 2,360 points
28,464 views
0 votes
1 answer

Handling JavaScript Alert window in Selenium WebDriver

You should try using waits for alerts ...READ MORE

Apr 10, 2018 in Selenium by ghost
• 1,790 points
2,154 views
0 votes
1 answer

Unable to use Selenium IDE & Firebug on Firefox

Unfortunately, Selenium IDE will not work anymore ...READ MORE

Apr 10, 2018 in Selenium by nsv999
• 5,500 points
1,103 views
0 votes
1 answer

How can we create a new Firefox profile for Selenium WebDriver?

Okay so first of all, in the ...READ MORE

Apr 10, 2018 in Selenium by nsv999
• 5,500 points
4,357 views
0 votes
1 answer

How can I implement Selenium using C#?

Reference https://www.seleniumhq.org/docs/03_webdriver.jsp#the-5-minute-getting-started-guide using OpenQA.Selenium.Firefox; using OpenQA.Selenium; class GoogleSuggest { ...READ MORE

Apr 9, 2018 in Selenium by Neville
636 views
0 votes
1 answer

Locating an element by value using css selector using Selenium WebDriver

Below code will help By.cssSelector("td[class='someclass'][value=' ...READ MORE

Apr 9, 2018 in Selenium by coldcode
• 2,080 points
1,740 views
0 votes
1 answer

Getting CSS class name using Selenium Webdriver

You can use getAttribute(attributeLocator) function.  selenium.getAttribute(//xpath@class); You have to specify the ...READ MORE

Apr 9, 2018 in Selenium by ghost
• 1,790 points
1,370 views
0 votes
1 answer

selenium.waitForPageToLoad(“30000”) method in Selenium WebDriver

You can use two approaches using Selenium ...READ MORE

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

JavaScript Executor using Selenium WebDriver

Its working fine but the problem in ...READ MORE

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

Select an item from a dropdown list using Selenium WebDriver

Use this then it will work - new ...READ MORE

Apr 9, 2018 in Selenium by Vardy
• 2,360 points
7,523 views
0 votes
1 answer

Differences between Implicit wait Vs. Explicit wait in selenium webdriver

Implicit Wait - It instructs the web driver ...READ MORE

Apr 9, 2018 in Selenium by ghost
• 1,790 points
3,575 views
0 votes
1 answer

Screenshot using Selenium WebDriver

Below code will help you using JAVA: WebDriver ...READ MORE

Apr 9, 2018 in Selenium by nsv999
• 5,500 points
489 views
0 votes
1 answer

Handling Alerts Selenium Webdriver

You can use Explicit Wait from here https://www.seleniumhq.org/docs/04_webdriver_advanced.jsp#explicit-and-implicit-waits public ...READ MORE

Apr 9, 2018 in Selenium by Damon Salvatore
• 5,980 points
1,661 views
0 votes
1 answer

Running a selenium-server-standalone

Below codes will help you: java -jar seleniumjar.jar ...READ MORE

Apr 9, 2018 in Selenium by KillerMiller
1,387 views
0 votes
1 answer

geckodriver in selenium webdriver 3.0 beta

Check this out System.setProperty("webdriver.gecko.driver", "pathTogeckodriver"); DesiredCapabilities capabilities = DesiredCapabilities.firefox(); capabilities.setCapability("marionette", ...READ MORE

Apr 9, 2018 in Selenium by Christine
• 15,790 points
596 views
0 votes
1 answer

Selecting a dropdown value in Selenium WebDriver

Try to wrap your WebElement as shown ...READ MORE

Apr 9, 2018 in Selenium by QueenBee
• 1,820 points
3,124 views
0 votes
1 answer

How can I download the *.jar file from http:// seleniumhq.org using selenium WebDriver?

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

Apr 9, 2018 in Selenium by Martin
• 4,320 points
3,251 views
0 votes
1 answer

Page Object Model(POM) and Keyword driven FrameWork in Selenium

Okay, first of all, page object model ...READ MORE

Apr 7, 2018 in Selenium by nsv999
• 5,500 points
5,597 views
0 votes
1 answer

How to take screenshot in Selenium WebDriver

In Java, it can be done like ...READ MORE

Apr 7, 2018 in Selenium by nsv999
• 5,500 points
1,677 views
0 votes
1 answer

What's the difference between functions getClass() and getAttribute(“class”) in Selenium?

The simple difference is that, getClass() returns ...READ MORE

Apr 7, 2018 in Selenium by nsv999
• 5,500 points
11,841 views
0 votes
1 answer

How to record popup windows with selenium IDE

If the popup window has a name ...READ MORE

Apr 7, 2018 in Selenium by nsv999
• 5,500 points
2,732 views
0 votes
1 answer

How do we use Gecko driver.exe with Selenium?

Recently Selenium launched v3 and if you ...READ MORE

Apr 7, 2018 in Selenium by nsv999
• 5,500 points
530 views
0 votes
1 answer

Need to switch between frames in Selenium

For switching between frames, use driver.switchTo().frame(). First ...READ MORE

Apr 6, 2018 in Selenium by nsv999
• 5,500 points
2,880 views
0 votes
1 answer

Reading data from Excel in my Selenium test

Log4j problems are usually thrown because of ...READ MORE

Apr 6, 2018 in Selenium by nsv999
• 5,500 points
10,302 views
0 votes
1 answer

What new features come with Selenium 3?

You can read the differences fullly here: ...READ MORE

Apr 6, 2018 in Selenium by nsv999
• 5,500 points
1,272 views
0 votes
1 answer

Confused betwen Java AWT Robot & Selenium Actions

There are plenty of differences between the ...READ MORE

Apr 6, 2018 in Selenium by nsv999
• 5,500 points
5,549 views
0 votes
1 answer

How are 'Selenium-server-standalone.jar' and 'Selenium Client & WebDriver' different from each other?

Okay, your understanding of "Selenium Server" & ...READ MORE

Apr 6, 2018 in Selenium by nsv999
• 5,500 points
2,645 views
0 votes
1 answer

How do we use assert() in Selenium WebDriver?

So, for implementing Assert(), you need to ...READ MORE

Apr 6, 2018 in Selenium by nsv999
• 5,500 points
10,873 views
0 votes
1 answer

Need to download IEDriver.

The links have changed. You can download ...READ MORE

Apr 6, 2018 in Selenium by nsv999
• 5,500 points
512 views
0 votes
1 answer

How can I make WebDriver wait for few seconds?

Well, just try increasing the amount of ...READ MORE

Apr 6, 2018 in Selenium by nsv999
• 5,500 points
4,048 views
0 votes
1 answer

How to handle Pop-up in Selenium WebDriver using Java

Actually, its pretty simple. Use this code ...READ MORE

Apr 6, 2018 in Selenium by nsv999
• 5,500 points
10,253 views
0 votes
1 answer

How to use FireFoxDriver using Selenium 3.4.0 using Maven?

Your using the wrong functions to set ...READ MORE

Apr 6, 2018 in Selenium by nsv999
• 5,500 points
4,593 views
0 votes
1 answer

Selenium JARS(Java) missing from downloadable link

Nothing to worry about here. In the ...READ MORE

Apr 5, 2018 in Selenium by nsv999
• 5,500 points

edited Aug 4, 2023 by Khan Sarfaraz 4,414 views
0 votes
1 answer

Do we have Selenium IDE for Chrome (like Firefox does)?

Actually, very recently Chrome has come up ...READ MORE

Apr 5, 2018 in Selenium by nsv999
• 5,500 points
770 views