Most voted questions in Selenium

0 votes
1 answer

Handling user authentication popup in Mobile/Tablet

You can get xpath/id of popup element ...READ MORE

Jul 3, 2018 in Selenium by Samarpit
• 5,910 points
670 views
0 votes
1 answer

Selenium-Debugging Error: Element is not clickable at point (X,Y)

Another element is covering the element you ...READ MORE

Jul 2, 2018 in Selenium by Samarpit
• 5,910 points
8,612 views
0 votes
1 answer

Error Throwing: TimeoutException after an element was clicked with true ExpectedConditions

As you are trying to invoke click() on the ...READ MORE

Jul 2, 2018 in Selenium by Samarpit
• 5,910 points
3,013 views
0 votes
1 answer

Downloading an executable with Selenium and Firefox Automatically

Below will help: When you create your driver: FirefoxProfile ...READ MORE

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

Unable to Start tor using Python Selenium Error: failed to start

I tried to solve same problem on ...READ MORE

Jun 29, 2018 in Selenium by Samarpit
• 5,910 points
3,542 views
0 votes
1 answer

Using IF / ELSE in selenium IDE

You'll have to download the Flow Control plugin for ...READ MORE

Jun 28, 2018 in Selenium by Meci Matt
• 9,460 points
6,207 views
0 votes
1 answer

Using switch_to_windows() and printing the title doesn't print the title in Selenium webdriver

The title of the page will not ...READ MORE

Jun 28, 2018 in Selenium by Meci Matt
• 9,460 points
3,009 views
0 votes
1 answer

Read data from excel sheet in python

Try to use xrld. A python module used ...READ MORE

Jun 28, 2018 in Selenium by Samarpit
• 5,910 points
3,474 views
0 votes
1 answer

Selenium Error: Runtime.executionContextCreated has invalid 'context':

Degrade your chrome driver version from 2.9 ...READ MORE

Jun 28, 2018 in Selenium by Samarpit
• 5,910 points
4,092 views
0 votes
1 answer

I am getting error: Element should have been “select” but was “input” using Selenium Webdriver Java

You can Select element by the following ...READ MORE

Jun 27, 2018 in Selenium by Samarpit
• 5,910 points
23,631 views
0 votes
1 answer

Which Firefox version is compatible with Selenium 2.53.0?

I had the similar problem. For me, ...READ MORE

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

How to resolve Pycharm Referenced Error with Import Selenium Web driver?

Below will help: Pycharm > Preferences > Project ...READ MORE

Jun 26, 2018 in Selenium by Samarpit
• 5,910 points
9,024 views
0 votes
1 answer

Setting the webdriver.chrome.driver system property

When u use Selenium 3.x you should ...READ MORE

Jun 26, 2018 in Selenium by Samarpit
• 5,910 points
17,390 views
0 votes
1 answer

Converting commands recorded in selenium IDE into Java

Yes, it is possible to do this. ...READ MORE

Jun 25, 2018 in Selenium by Meci Matt
• 9,460 points
2,253 views
0 votes
5 answers

Moving mouse pointer to a specific location or element using C# and Selenium

n order to perform a 'mouse hover' ...READ MORE

Dec 16, 2020 in Selenium by Gitika
• 65,910 points
49,428 views
0 votes
1 answer

How to scroll until the element is in view using Selenium2Library Keyword?

You have to download the ExtendedSelenium2Library from ...READ MORE

Jun 25, 2018 in Selenium by Samarpit
• 5,910 points
8,759 views
0 votes
1 answer

How to start with a POST request using Selenium?

No, you cannot do this. But you ...READ MORE

Jun 25, 2018 in Selenium by Meci Matt
• 9,460 points
11,633 views
0 votes
1 answer

Open new tab instead of a new window in Selenium WebDriver

The current version of Selenium do not ...READ MORE

Jun 22, 2018 in Selenium by Meci Matt
• 9,460 points
3,701 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
932 views
0 votes
2 answers

Get text using selenium web driver in python

text = driver.find_element_by_class_name("current-text").getText(); ...READ MORE

Feb 4, 2019 in Selenium by anonymous
37,685 views
0 votes
1 answer

Can we capture JavaScript errors in Selenium

This might work. Add the below code ...READ MORE

Jun 21, 2018 in Selenium by nsv999
• 5,500 points
1,603 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
895 views
0 votes
1 answer

Not able to find web element in Span Tag

Try using class selector also. driver.findElement(By.cssSelector(".login-link")).click(); hash is used ...READ MORE

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

Matching different browser version and selenium driver version

Look at the below link to see ...READ MORE

Jun 21, 2018 in Selenium by Samarpit
• 5,910 points
2,505 views
0 votes
1 answer

Clear text from text area using selenium WebDriver

use the below code: driver.find_element_by_id('abc').clear(); READ MORE

Jun 20, 2018 in Selenium by Meci Matt
• 9,460 points
32,136 views
0 votes
1 answer

How to take screenshot of a frame using Selenium WebDriver?

you can use the below code: import java.awt.image.BufferedImage; import ...READ MORE

Jun 20, 2018 in Selenium by Meci Matt
• 9,460 points
3,153 views
0 votes
3 answers

Click Allow on Show Notifications popup using Selenium Webdriver

Try this: Robot robot = new Robot(); robot.delay(5000); robot.keyPress(KeyEvent.VK_TAB); robot.keyPress(KeyEvent.VK_ENTER); hope this ...READ MORE

Mar 1, 2020 in Selenium by anuj
28,691 views
0 votes
1 answer

Click on a button within a pop-up window with python selenium

It's not an Alert but a Modal Dialog Box. You ...READ MORE

Jun 20, 2018 in Selenium by Samarpit
• 5,910 points
31,001 views
0 votes
1 answer

Error in for loop to fetch data from excel in selenium

You are closing theFileInputStream inside the for-loop. ...READ MORE

Jun 20, 2018 in Selenium by Samarpit
• 5,910 points
3,655 views
0 votes
2 answers

How to solve the error while connecting real iOS device with Appium server?

Run Command 'ideviceinstaller in Terminal and found ...READ MORE

May 14, 2019 in Selenium by Siddharth
2,302 views
0 votes
1 answer

Native logger in Selenium WebDriver

Select the log types you want and ...READ MORE

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

Integration of Protractor using Jenkins

I created a script, as follows # start ...READ MORE

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

Select a drop down value of angular js application using selenium using text

To select drop down use following, driver.findElements(By.className("Your dropdown ...READ MORE

Jun 18, 2018 in Selenium by Samarpit
• 5,910 points
10,468 views
0 votes
6 answers

How to get text found between span – selenium

The text "Search Zone" is not part ...READ MORE

Feb 28, 2019 in Selenium by Trying to Figure
74,926 views
0 votes
1 answer

Difference between Selenium RC and WebDriver

Selenium RC Selenium Remote Control (RC) is used ...READ MORE

Jun 14, 2018 in Selenium by Meci Matt
• 9,460 points
1,635 views
0 votes
2 answers

What is Page Object Model in Selenium WebDriver?

POM is one of design pattern. maintenance  should ...READ MORE

Sep 4, 2020 in Selenium by Sri
• 3,190 points
1,188 views
0 votes
2 answers

How to use such xpath to find web elements

xpath are two types. 1) Absolute XPath:    /html/b ...READ MORE

Sep 3, 2020 in Selenium by Sri
• 3,190 points
7,548 views
0 votes
1 answer

Selenium Webdriver call function Java Scipt

To run Javascript with selenium web driver you should ...READ MORE

Jun 14, 2018 in Selenium by Samarpit
• 5,910 points
3,770 views
0 votes
2 answers

How to get HTML Source of WebElement in Selenium WebDriver using Python?

If you want to get the html ...READ MORE

May 31, 2019 in Selenium by Atul Singh
39,411 views
0 votes
1 answer

Using Selenium IDE with some random values

 Selenium IDE is not used, it is ...READ MORE

Jun 13, 2018 in Selenium by Meci Matt
• 9,460 points
3,972 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
672 views
0 votes
1 answer

Sending keys to credit card fields (fields are from stripe) using selenium

Below code will help you: String cnum = ...READ MORE

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

Clicking on hidden element in Selenium WebDriver

let us first store that element in the ...READ MORE

Jun 12, 2018 in Selenium by Meci Matt
• 9,460 points
12,937 views
0 votes
2 answers

Check that the element is clickable or not in Selenium WebDriver

Hi , you want to know only is ...READ MORE

Aug 31, 2020 in Selenium by Sri
• 3,190 points
33,317 views
0 votes
1 answer

Handling elements inside Shadow DOM in Selenium WebDriver

You can use the driver.executeScript() method to access the ...READ MORE

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

Handling pop up in Chrome using Selenium WebDriver

AutoIt Window Information Tool do not recognize ...READ MORE

Jun 11, 2018 in Selenium by Meci Matt
• 9,460 points
2,686 views
0 votes
1 answer

How to resolve the issue: Xpath for node without text but child has text

This will help you: //strong[not(normalize-space(text()))]/span[te ...READ MORE

Jun 11, 2018 in Selenium by Samarpit
• 5,910 points
3,890 views
0 votes
1 answer

Safari getting launched on ios simulator, but not able to get url using driver.get(“”)

Below github link will help as the ...READ MORE

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

Is there a way to pass on the options/ flags to Selenium if i'm scripting in Python?

This is the usage: from selenium import webdriver from ...READ MORE

Jun 8, 2018 in Selenium by king_kenny
• 3,710 points
4,617 views