Questions tagged [selenium3]

Selenium 3.0 is a new version of open-source tool/framework for automating web browsers. When using this tag, also include other tags for the specific components you are using, e.g. gecko driver. It does support all latest browsers.


Selenium 3.0 is a new version of open-source tool/framework for automating web browsers. When using this tag, also include other tags for the specific components you are using, e.g. gecko driver. It does support all latest browsers.


Reference Links

86 questions
18
votes
5 answers

What Is Selenium And What Is WebDriver?

What is Selenium? When you open the official page of the Selenium, the first thing you read is "Selenium automates browser" in "What is Selenium?" section. The section "Which part of Selenium is appropriate for me?" below offers the choice between…
learningQA
  • 641
  • 1
  • 5
  • 20
14
votes
1 answer

WebDriverException: Message: The command 'GET /session/7.../displayed' was not found while Explicit Wait with safaridriver and Selenium 3.13.0

I am using explicit wait like below to check if element is clickable. WebDriverWait(driver, 30).until( expected_conditions.element_to_be_clickable((By.CSS_SELECTOR, "#search"))) But I get error
user2661518
  • 2,677
  • 9
  • 42
  • 79
8
votes
3 answers

How to set up selenium 3.0, getting error "The geckodriver.exe file does not exist..." in c#

Updated selenium in visual studio to 3.0 and firefox to 47.0 and now I'm getting this error when I try to use local webdriver mode: The geckodriver.exe file does not exist in the current directory or in a directory on the PATH environment…
safary
  • 325
  • 2
  • 7
  • 26
7
votes
5 answers

Selenium 3 Firefox .click() not working

Since I upgraded to the newest Selenium version my Firefox driver is not working properly. Failing to find an answer from searching Google/Stack I hope someone here has an answer. I've build a page object model for logging in to a webpage, clicking…
MSJ
  • 154
  • 1
  • 3
  • 10
5
votes
5 answers

Selenium 3.7 webdriver Error: Timed out waiting for driver server to start

Upgraded to Selenium 3.7 recently and ran into error. Error trace log: Debug 1 Debug 2 Starting ChromeDriver 2.33.506106 (8a06c39c4582fbfbab6966dbb1c38a9173bfb1a2) on port 2198 Only local connections are allowed. Exception in thread "main"…
Maggie
  • 111
  • 1
  • 2
  • 10
5
votes
2 answers

user:pass proxies with selenium

What is the best/easiest way to use user authenticated proxies in a program? I currently have this but I need username and password to be already filled in when browser opens. from selenium import webdriver PROXY =…
fraser dale
  • 1,187
  • 1
  • 9
  • 18
4
votes
1 answer

Run a feature file in different browsers at the same time - Selenium cucumber maven framework

I am using Selenium Cucumber Maven framework with Junit. I need to run the same feature file in different browsers at the same time. Also I need to run the file using command line . Could you guys please help me with a solution since Iam a beginner…
Milu
  • 135
  • 1
  • 3
  • 13
3
votes
1 answer

Unable to suppress a firefox pop-up for a file download

Firefox - 51.0.1 Selenium - 3.0.5 Ubuntu - 16.04 (64bit) Here is what my code looks like: profile = Selenium::WebDriver::Firefox::Profile.new profile['browser.download.dir'] = "/tmp/webdriver-downloads" profile['browser.download.folderList'] =…
The Rookie
  • 595
  • 9
  • 26
3
votes
1 answer

How to perform webdriver backed selenium in selenium 3?

How to perform webdriver backed selenium in selenium 3 ? Selenium 3 has recently removed the feature called 'webdriver backed selenium' I have to perform mouseover, type operations like this, which is no more supported in Selenium 3. selenium = new…
3
votes
0 answers

GeckoDriver support for protractor to execute latest FF versions

As we know, Selenium Webdriver 2.53.1 is limited to Firefox browser 45/46 and its below versions. Selenium 3 was launched by removing entire Selenium RC Core along with additional support on latest browsers recently. It uses GeckoDriver to drive the…
Prashanth Sams
  • 19,677
  • 20
  • 102
  • 125
2
votes
4 answers

Selenium TypeError: __init__() got an unexpected keyword argument 'service'

I'm refactoring my app from procedural code to OOP. I am trying to do this Driver class. UPDATE: this works in Windows but not in Mac. # IMPORTS from sys import platform import os from os import system from selenium import webdriver from…
AppCreator
  • 241
  • 1
  • 2
  • 11
2
votes
3 answers

Locate an element using selenium xpath

I am trying to locate an element that has the following line in the chrome inspect code, . My line is: driver.find_element(By.xpath("//a[@href='/app/arp/home/profile']")).click() But I get the following…
PChao
  • 417
  • 2
  • 5
  • 17
2
votes
1 answer

Would you like to replace the existing file was asked while extracting selenium-server-standalone jar file

After having downloaded the selenium-server-standalone-3.141.59 jar file from https://www.selenium.dev/downloads/, I tried to extract the files. During the extraction, a pop-up shows up saying: "The following file already exists.…
dmarmoset
  • 19
  • 1
2
votes
1 answer

Has Anyone Gotten Selenium 3 (for java) to Work with Firefox Without Any Major Bugs?

I have been Testing Selenium 3 (with Firefox) as soon as it came out and have never been able to get a satisfactory result. So I have been holding off officially moving my team's code to version 3. However, now one of the apps that we are testing…
Brandon Dudek
  • 849
  • 1
  • 8
  • 18
2
votes
1 answer

Unable to connect to selenium grid node

I am trying to connect to a no on a Linux machine with the RemoteWebDriver, but have been unsuccessful. This is the code: public WebDriver googlechrome(){ /*Method to start Google Chrome.*/ WebDriver driver = null; ChromeOptions options =…
hifzur
  • 193
  • 3
  • 10
1
2 3 4 5 6