Latest questions in Selenium

0 votes
1 answer

How to find a list of elements that end with a particular string by using Selenium with Ruby

The problem is that, the end_with method ...READ MORE

Mar 27, 2018 in Selenium by nsv999
• 5,500 points
1,676 views
0 votes
2 answers

Finding an element in Selenium

Hi, ​both find_element_by_xpath(xpath) and find_element(By.XPath, xpath) serve the ...READ MORE

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

Using headless browser for Armv7 linux processor

Install the lower version of selenium.It fixed ...READ MORE

Mar 27, 2018 in Selenium by code_ninja
• 6,290 points
744 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
3,996 views
0 votes
1 answer

Can't find an element Using Selenium

The reason you can't locate the item ...READ MORE

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

Finding parent element in Protractor

To get the parent element, you can ...READ MORE

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

Saving data to the same xls file with Robot Framework ExcelLibrary

The documentation of the library states that, ...READ MORE

Mar 27, 2018 in Selenium by nsv999
• 5,500 points
6,308 views
0 votes
3 answers

Trying to upload files using Selenium(C#)

You can try using Javascript Executor to ...READ MORE

Aug 23, 2019 in Selenium by Abha
• 28,140 points
5,248 views
0 votes
1 answer

Selenium ChromeDriver issue - Want to run it in background, but not as headless browser

This is a flaw with ChromeDriver. Tried ...READ MORE

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

Unable to connect to chromedriver 127.0.0.1:9515 on Amazon Linux AMI server

The issue seems to be only with ...READ MORE

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

Python & Selenium: How to find and click on YouTube's Like button

Hello Nitin, as the Like button on ...READ MORE

Aug 23, 2019 in Selenium by Abha
• 28,140 points
4,944 views
0 votes
1 answer

Unable to take the screenshot of the entire page in chrome using webdriver

I solved this issue myself actually. I ...READ MORE

Mar 26, 2018 in Selenium by nitinrawat895
• 11,380 points
3,346 views
+1 vote
2 answers

Python with Selenium issue: “Chrome is being controlled by automated test software”

from selenium import webdriver chrome_options = webdriver.ChromeOptions() chrome_options.add_experimental_option("useAutomationExtension", False) chrome_options.add_experimental_option("excludeSwitches",["enable-automation"]) driver ...READ MORE

Apr 20, 2020 in Selenium by Manoj
14,950 views
0 votes
1 answer

Timeout error in selenium:- Timeout::Error with Selenium/Capybara/Cucumber/Ruby

The only reason for a timeout error ...READ MORE

Mar 26, 2018 in Selenium by nsv999
• 5,500 points
2,077 views
+1 vote
1 answer

Disable notification" “Chrome is being controlled by automated test software” in ChromeDriver 2.36

"disable-infobars" flag has been deprecated, but you ...READ MORE

Mar 26, 2018 in Selenium by nsv999
• 5,500 points
16,616 views
+1 vote
1 answer

Nightwatch chromedriver error

You should use a dot before lib: "webdriver.chrome.driver" ...READ MORE

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

TestNG error:- Cannot find class in classpath

The above link didn't work it means ...READ MORE

Feb 12, 2020 in Selenium by Rashmi Reddy PR
40,064 views
0 votes
1 answer

Can we run multiple instances simultaneously with Selenium WebDriver?

A better option is to create multiple ...READ MORE

Mar 24, 2018 in Selenium by nsv999
• 5,500 points
14,740 views
0 votes
2 answers

How can we take screenshots of tests in Selenium 2 using C#

Hey, try using following code command to ...READ MORE

Aug 23, 2019 in Selenium by Abha
• 28,140 points
1,009 views
0 votes
3 answers

Can we run selenium tests (Firefox) on WebDriver without a GUI?

Hi ,  Yes, you can use headless browsers ...READ MORE

Sep 2, 2020 in Selenium by Sri
• 3,190 points
3,593 views
0 votes
6 answers

How to specify "ENTER" button functionality in Selenium WebDriver code?

using OpenQA.Selenium.Interactions; Actions builder = new Actions(driver); ...READ MORE

Feb 13, 2019 in Selenium by anonymous
94,864 views