Latest questions in Selenium

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,035 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,245 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,583 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,402 views
0 votes
2 answers

How to scroll the Page up or down in Selenium WebDriver? (using java)

JavascriptExecutor jsx = (JavascriptExecutor)driver; jsx.executeScript("window.scrollBy(0,555)", ""); or Action classes ...READ MORE

Sep 6, 2020 in Selenium by Sri
• 3,190 points
18,514 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
768 views
0 votes
1 answer

What are the differences between getText() and getAttribute() functions in Selenium WebDriver?

See, both are used to retrieve something ...READ MORE

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

What's the diff between Selenium RC and Selenium WebDriver?

RC works by injecting the JavaScript functions ...READ MORE

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

DesiredCapabilities in Selenium WebDriver

DesiredCapabilities is a class in org.openqa.selenium.remote.DesiredCapabilities package ...READ MORE

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

Java.lang.CharSequence cannot be resolved error while using sendKeys() using Selenium Webdriver

You could try this, myElement .sendKeys(new String[] { ...READ MORE

Apr 4, 2018 in Selenium by Johnathon
• 9,090 points
4,353 views
0 votes
1 answer

How to use Actions class in Selenium Webdriver?

In seleniun webdriver it is not mandatory ...READ MORE

Apr 4, 2018 in Selenium by Damon Salvatore
• 5,980 points
3,906 views
+1 vote
1 answer

How to perform mouse hovering in Selenium WebDriver (Java)?

You many not actually be able to ...READ MORE

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

edited Aug 22, 2023 by Khan Sarfaraz 10,297 views
0 votes
1 answer

Where do I get the ChromeDriver.exe from? The download link isn't available

You can download the chromedriver.exe from this ...READ MORE

Apr 3, 2018 in Selenium by nsv999
• 5,500 points
15,022 views
0 votes
1 answer

Maven pom.xml file issue USING SELEINUM WebDriver using Firfox

You don't need to change anything in ...READ MORE

Apr 3, 2018 in Selenium by ned_crew
• 1,610 points
1,365 views
0 votes
1 answer

Selenium Type method test method failed

In this matter ur 1st paramter should ...READ MORE

Apr 3, 2018 in Selenium by Shubham
• 13,490 points
787 views
+1 vote
4 answers

Need to wait until page is completely loaded - Selenium WebDriver

You can try something like -  new WebDriverWait(firefoxDriver, ...READ MORE

Dec 21, 2019 in Selenium by Robin
63,413 views
0 votes
2 answers

How different/ similar are Protractor and Selenium? Which is better?

Protractor and Selenium both are used to ...READ MORE

Jun 9, 2019 in Selenium by Amod Mahajan
3,634 views
0 votes
2 answers

Handling new window using Selenium

You can try something like this too:  ...READ MORE

Aug 27, 2019 in Selenium by Abha
• 28,140 points
8,975 views
0 votes
1 answer

Explicit Wait and Fluent Wait error in Selenium Webdriver

You should use Explicit wait or Fluent ...READ MORE

Apr 2, 2018 in Selenium by ghost
• 1,790 points
3,123 views
0 votes
2 answers

Unable to Click on an Element in Selenium (Python) even after finding it.

Here, I give you working script which ...READ MORE

Sep 19, 2018 in Selenium by Priyaj
• 58,090 points
23,485 views
0 votes
1 answer

dBase for my website always gives me this error “Invalid syntax”

Seems like you are missing a close ...READ MORE

Mar 30, 2018 in Selenium by nsv999
• 5,500 points
1,001 views
0 votes
1 answer

Browser is Unreachable exception while trying to test with Selenium Webdriver using IEDriver

I was getting the same error and ...READ MORE

Mar 30, 2018 in Selenium by nsv999
• 5,500 points
10,793 views
0 votes
2 answers

How to use Selenium with Python?

Hey Shubham, you can checkout this thread ...READ MORE

Aug 26, 2019 in Selenium by Abha
• 28,140 points
845 views
0 votes
1 answer

Selenium IDE (2.9.1.1-signed) not working with latest Version of Firefox

Unfortunately, Selenium IDE will be deprecated soon. ...READ MORE

Mar 30, 2018 in Selenium by nsv999
• 5,500 points

edited Apr 4, 2018 by nsv999 7,215 views
0 votes
3 answers

Clicking on an element in robot framework is not working in IE, but its working fine in Chrome & Firefox

public class SiblingAndParentInXpath { ...READ MORE

Apr 24, 2020 in Selenium by Blazzzinglight
11,512 views
0 votes
1 answer

How do I set the zoom level of Internet Explorer to 100% when using python _winreg

My qustion is, by default for testing ...READ MORE

Mar 30, 2018 in Selenium by nsv999
• 5,500 points
3,096 views
+1 vote
3 answers

java.lang.ClassNotFoundException: okhttp3.ConnectionPool - Selenium Error

The only reason for ClassNotFoundException is if ...READ MORE

Mar 30, 2018 in Selenium by nsv999
• 5,500 points
17,642 views
0 votes
1 answer

I'm working on utility tool which should to test GWT-App. I wanna use Chrome headless browser, but that doesn't work.

Along with the --headless option, you should ...READ MORE

Mar 30, 2018 in Selenium by nsv999
• 5,500 points
907 views
0 votes
1 answer

Need to perform parallel execution (multiple browser sessions) with Selenium & TestNG by using @BeforeSuite

@Beforesuite annotated method runs before the testNG.XML ...READ MORE

Mar 30, 2018 in Selenium by nsv999
• 5,500 points
5,443 views
0 votes
1 answer

Headless ChromeDriver using Python Selenium error: Fails To Start— “DevTools request failed”

This should be because your ChromeDriver is ...READ MORE

Mar 30, 2018 in Selenium by nsv999
• 5,500 points
1,659 views
0 votes
1 answer

StaleElementReferenceException in Selenium

Since the page gets refreshed, the button ...READ MORE

Mar 30, 2018 in Selenium by nsv999
• 5,500 points
475 views
0 votes
2 answers

Unable to switch back to default frame

Hi Shubham, you can switch to a ...READ MORE

Aug 26, 2019 in Selenium by Abha
• 28,140 points
2,260 views
0 votes
2 answers

Can anyone help me that how to run Selenium WebDriver test cases in Chrome?

You first need to download chrome driver ...READ MORE

Aug 26, 2019 in Selenium by Abha
• 28,140 points
1,687 views
0 votes
1 answer

Double click a record in a grid using Selenium webdriver

Try Actions class to perform this Actions action ...READ MORE

Mar 30, 2018 in Selenium by Damon Salvatore
• 5,980 points
4,857 views
0 votes
1 answer

Error throwing org.openqa.selenium.WebDriverException: Cannot find firefox binary in PATH

Don't use firefox.exe in the end e.g. ...READ MORE

Mar 30, 2018 in Selenium by brat_1
• 7,200 points
3,513 views
+2 votes
4 answers

sendKeys() not working in Selenium Webdriver

this work for me you should update your ...READ MORE

Aug 27, 2019 in Selenium by Afif
29,496 views
0 votes
1 answer

I tried the below code but multiple instances are being created

Remove the driver initialization from @BeforeClass/ returnDriver() ...READ MORE

Mar 30, 2018 in Selenium by DragonLord999
• 8,450 points
1,172 views
0 votes
1 answer

Need to download a file using Selenium

Pretty simple...Find the element or link using ...READ MORE

Mar 30, 2018 in Selenium by nsv999
• 5,500 points
3,213 views
0 votes
1 answer

Error with Selenium File Upload

In your code, you have used "WebElement" ...READ MORE

Mar 30, 2018 in Selenium by nsv999
• 5,500 points
5,758 views
0 votes
1 answer

Firefox browser driver issue. Not loading. I'm getting the below Error: typeError: addon is null

The error is pretty straight forward. Its ...READ MORE

Mar 28, 2018 in Selenium by nsv999
• 5,500 points
2,543 views
0 votes
1 answer

Not able to use “explicit wait” in my code

To wait until the entire data has ...READ MORE

Mar 28, 2018 in Selenium by nsv999
• 5,500 points
923 views
0 votes
1 answer

Python + Selenium - Trying to find element by link containing certain words

2 issues. One thing is, "Catalogues" & ...READ MORE

Mar 28, 2018 in Selenium by nsv999
• 5,500 points
9,129 views
+2 votes
2 answers

How can I press ENTER key with the execute_script in selenium python?

The below code containing Keys.ENTER might just ...READ MORE

Mar 28, 2018 in Selenium by nsv999
• 5,500 points
26,712 views
0 votes
1 answer

Selenium + Java - drag and drop not working on selenium 3.8

How about you try adding the below ...READ MORE

Mar 28, 2018 in Selenium by nsv999
• 5,500 points
4,757 views
0 votes
1 answer

How should I configure the chromedriver.exe in eclipse

Use the page factory pattern, working example: public ...READ MORE

Mar 27, 2018 in Selenium by ffdfd
• 5,550 points
19,188 views
–1 vote
1 answer

Selenium XPath error:- Element not found

The reason for Element not found exception ...READ MORE

Mar 27, 2018 in Selenium by nsv999
• 5,500 points
19,832 views
0 votes
1 answer

Web-scraping with beautifulsoup in different siblings

The tags are not closed in your ...READ MORE

Mar 27, 2018 in Selenium by nsv999
• 5,500 points
798 views
0 votes
1 answer

Xpath element not found

You need to induce WebDriverWait with expected_conditions ...READ MORE

Mar 27, 2018 in Selenium by ned_crew
• 1,610 points
3,026 views
+1 vote
1 answer

How to handle drop downs using Selenium WebDriver in Java

First, find an XPath which will return ...READ MORE

Mar 27, 2018 in Selenium by nsv999
• 5,500 points
7,980 views