Trending questions in Selenium

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,357 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,737 views
0 votes
1 answer

Uploading files using selenium WebDriver

Try using input() function: WebElement fileInput = driver.fin ...READ MORE

Jul 5, 2018 in Selenium by Meci Matt
• 9,460 points
364 views
0 votes
1 answer

Using Selenium with PHP

Try Following things Install PHPUnit  Install JAVA SDK & ...READ MORE

Jun 21, 2018 in Selenium by Meci Matt
• 9,460 points
944 views
0 votes
1 answer

Error: StaleElementReferenceException with WebDriver

I faced this exact problem once before. ...READ MORE

Jun 21, 2018 in Selenium by nsv999
• 5,500 points
910 views
0 votes
1 answer

How to eleiminate Selenium NoClassDefFoundError for SSLContext?

You need to upgrade the httpCore dependency ...READ MORE

May 4, 2018 in Selenium by Samarpit
• 5,910 points
2,882 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,045 views
0 votes
1 answer

Which programming language is highly used in Selenium

Java is most widely used programming language ...READ MORE

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

Hiding Firefox window using Selenium WebDriver

The common way to hide the browser ...READ MORE

May 22, 2018 in Selenium by Meci Matt
• 9,460 points
1,907 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,601 views
0 votes
1 answer

Wait for page to load using HtmlUnitDriver

You can create a custom ExpectedCondition public static ...READ MORE

May 7, 2018 in Selenium by anonymous
2,507 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

Refreshing web page in Selenium WebDriver

you can use the below code to ...READ MORE

Jun 18, 2018 in Selenium by Meci Matt
• 9,460 points
678 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,910 views
0 votes
1 answer

Performing authentication for FirefoxDriver, ChromeDriver and IEDriver using Selenium WebDriver

Use the below code for firefox: profile.SetPreference("network.automatic-ntlm-auth.trusted-uris", "google.com"); driver ...READ MORE

May 9, 2018 in Selenium by Meci Matt
• 9,460 points
2,378 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,573 views
0 votes
1 answer

Please help me solve this issue:- WebDriverException: The browser appears to have exited before we could connect

If its a Python code, then along ...READ MORE

May 14, 2018 in Selenium by king_kenny
• 3,710 points
2,051 views
0 votes
1 answer

Identifying the page iframe in Selenium using Java Code

Open the page in a browser and ...READ MORE

May 24, 2018 in Selenium by Samarpit
• 5,910 points
1,583 views
0 votes
1 answer

Is Selenium 3.6.0 & webdriver = new FirefoxDriver(capabilities) - deprecated?

Check this out: https://raw.githubusercontent.com/SeleniumHQ/selenium/master/rb/CHANGES 3.4.1 (2017-06-13) ================== Firefox: * Added ...READ MORE

May 17, 2018 in Selenium by Samarpit
• 5,910 points
1,859 views
0 votes
1 answer

Selenium .net Binary location failed VB.NET

ChromeOptions.BinaryLocation is for specifying the location of ...READ MORE

May 15, 2018 in Selenium by Samarpit
• 5,910 points
1,941 views
0 votes
1 answer

Test fail: Selenium Python send_keys stop working

Your chrome driver should be latest version ...READ MORE

May 16, 2018 in Selenium by Samarpit
• 5,910 points
1,880 views
+1 vote
1 answer

Throwing Hamcrest exception message while actual and expected are same

Below will help you: Its due to string ...READ MORE

Jun 14, 2018 in Selenium by Samarpit
• 5,910 points
585 views
0 votes
1 answer

Multiple tabs in Selenium WebDriver

If you have a link that opens a ...READ MORE

May 25, 2018 in Selenium by Meci Matt
• 9,460 points
1,479 views
0 votes
1 answer

My Windows authentication code no longer working now

Try below of the options driver.switchTo().alert(); or driver.sw ...READ MORE

Jun 12, 2018 in Selenium by Samarpit
• 5,910 points
682 views
0 votes
1 answer

I tried to open a new website when a new tab is opened using Selenium Webdriver

Try this code: ArrayList<String> tabs = new ...READ MORE

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

Selenium with C#

using OpenQA.Selenium.Firefox; using OpenQA.Selenium; class Demo { ...READ MORE

May 31, 2018 in Selenium by Meci Matt
• 9,460 points
1,152 views
0 votes
1 answer

Need to know which is better among browser.isElementPresent vs element.isPresent vs element.isElementPresent

All of these work very similar but ...READ MORE

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

Implicit wait & Explicit wait in selenium WebDriver

Implicit Wait:  While loading a web page in ...READ MORE

May 24, 2018 in Selenium by Meci Matt
• 9,460 points
1,421 views
0 votes
1 answer

There is an problem with the Recursion in Java. Method is returning empty list

checkMonth(driver) Ignore the List returned by that call. Perhaps you want ...READ MORE

Jun 6, 2018 in Selenium by jonss
864 views
0 votes
1 answer

Checking HTTP Status in Selenium

This might not be the best use ...READ MORE

Jun 7, 2018 in Selenium by Meci Matt
• 9,460 points
780 views
0 votes
1 answer

Capturing JavaScript errors with Selenium WebDriver using Java

There is logs Beta version in WebDriver driver.manage().logs().get(LogType.BROWSER); Console output will be ...READ MORE

May 18, 2018 in Selenium by Samarpit
• 5,910 points
1,565 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,249 views
0 votes
1 answer

Sending cookies using Selenium WebDriver

You can create cookies using Java API ...READ MORE

May 25, 2018 in Selenium by Meci Matt
• 9,460 points
1,245 views
0 votes
1 answer

Opening Tabs using a Watir in Ruby

Selenium doesn't explicitly support opening of tabs, ...READ MORE

May 10, 2018 in Selenium by Samarpit
• 5,910 points
1,872 views
0 votes
1 answer

How to login a forum using Selenium with Python

You should try to directly log in ...READ MORE

Apr 27, 2018 in Selenium by Samarpit
• 5,910 points
2,431 views
0 votes
1 answer

Wait for an element to be accessible using Selenium WebDriver

You can try out the below code: ...READ MORE

May 18, 2018 in Selenium by Atul
• 10,240 points
1,485 views
0 votes
1 answer

Selenium: Executing multiple tests at the same time

Probably your not aware of Selenium Grid ...READ MORE

May 25, 2018 in Selenium by sniffy_god
• 780 points
1,149 views
0 votes
1 answer

File Upload in Selenium Webdriver

The problem I found is excessive backslash(\) is ...READ MORE

May 22, 2018 in Selenium by Meci Matt
• 9,460 points
1,279 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,641 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,123 views
0 votes
1 answer

Error running tests with Selenium WebDriver - FirefoxDriver error: Failed to start up socket within 45000

Normally a socket exception occurs when the ...READ MORE

May 25, 2018 in Selenium by sniffy_god
• 780 points
1,122 views
0 votes
1 answer

browse a website using selenium webdriver

You can use the below code: public class ...READ MORE

Jun 8, 2018 in Selenium by Meci Matt
• 9,460 points
521 views
0 votes
1 answer

How to download a text file of .lst extension, in selenium python webdriver

I found that my MIME file type ...READ MORE

Apr 24, 2018 in Selenium by Meci Matt
• 9,460 points
2,422 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,600 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,641 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,516 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,646 views
0 votes
1 answer

Switching browsers in Selenium WebDriver

You can try the below code: private ...READ MORE

Jun 8, 2018 in Selenium by Meci Matt
• 9,460 points
414 views
0 votes
1 answer

Why we don't use Selenium IDE?

Selenium IDE is a Mozilla Firefox plugin, which ...READ MORE

May 3, 2018 in Selenium by Meci Matt
• 9,460 points
1,955 views
0 votes
1 answer

Untrusted Certificates Force Ruby Selenium

Check this out capabilities = Selenium::WebDriver::Remote::W3C::Capabilities.firefox(accept_insecure_certs: true) driver = ...READ MORE

May 9, 2018 in Selenium by Samarpit
• 5,910 points
1,690 views