Top "Selenium" questions

Selenium is a popular open-source tool for automating web browsers.

Cannot find firefox binary in PATH. Make sure firefox is installed

In Selenium Grid I am trying to execute a simple program and I'm getting Cannot find firefox binary in PATH …

java selenium selenium-webdriver selenium-grid
Execute JavaScript using Selenium WebDriver in C#

How is this achieved? Here it says the java version is: WebDriver driver; // Assigned elsewhere JavascriptExecutor js = (JavascriptExecutor) driver; js.…

javascript c# selenium selenium-webdriver webdriver
How to open a link in new tab (chrome) using Selenium WebDriver?

System.setProperty("webdriver.chrome.driver", "D:\\softwares\\chromedriver_win32\\chromedriver.exe"); WebDriver driver = new ChromeDriver(); driver.manage().timeouts().implicitlyWait(10, TimeUnit.…

java google-chrome selenium selenium-webdriver browser-tab
How to select option in drop down protractorjs e2e tests

I am trying to select an option from a drop down for the angular e2e tests using protractor. Here …

javascript angularjs selenium testing protractor
How to use the gecko executable with Selenium

I'm using Firefox 47.0 with Selenium 2.53. Recently they have been a bug between Selenium and Firefox which make code not working. …

java selenium firefox geckodriver
How to handle windows file upload using Selenium WebDriver?

I have seen lots of questions and solutions on File upload using Selenium WebDriver on Stack Overflow. But none of …

java selenium file-upload selenium-webdriver webdriver
Python Selenium accessing HTML source

How can I get the HTML source in a variable using the Selenium module with Python? I wanted to do …

python selenium selenium-webdriver
Selenium WebDriver and DropDown Boxes

If I want to select an option of a dropdown box, there are several ways to do that. I always …

java selenium drop-down-menu selenium-webdriver webdriver
How to handle authentication popup with Selenium WebDriver using Java

I'm trying to handle authentication popup using the code below: FirefoxProfile profile = new FirefoxProfile(); profile.setPreference("network.http.phishy-userpass-length", 255); profile.…

java authentication selenium selenium-webdriver popup
element not interactable exception in selenium web automation

In the below code i cannot send password keys in the password field, i tried clicking the field, clearing the …

java selenium automation testng webautomation