Questions tagged [webdriver-manager]

Webdriver-manager is a binary manager for end-to-end testing for both web and mobile. Webdriver-manager is a tool used for downloading and starting the selenium standalone server in Protractor end-to-end tests.

Webdriver-manager is a binary manager for end-to-end testing for both web and mobile used in tests.

Resources

240 questions
3
votes
4 answers

Could not get version for Chrome with this command: google-chrome --version || google-chrome-stable --version

Web scraping with selenium works fine on my mac local machine but when I push to live Ubuntu server, I get the following error Could not get version for Chrome with this command: google-chrome --version || google-chrome-stable --version when I try…
3
votes
2 answers

Getting "Driver info: driver.version: unknown" while running scripts using protractor

I am getting below error while executing the scripts in protractor. System info: host: '8888', ip: '88888', os.name: 'Mac OS X', os.arch: 'x86_64', os.version: '10.15.7', java.version: '14.0.1' Driver info: driver.version: unknown [13:13:08]…
3
votes
4 answers

Can't find webdriver_manager module in PyCharm

I'm trying to get a headless webscraper going using firefox and geckodriver and I'm trying to get the paths using webdriver_manager. I've run pip install webdriver_manager and I'm trying to use this to open the browser from selenium import…
3
votes
1 answer

How to change the Google Chrome UserAgent using the ChromeDriver installed through webdriver_manager

I recently had an issue where I couldn't change my user-agent in selenium. I got that fixed but then had a chrome driver issue where it required chrome driver version 81. I got that fixed but don't know how to implement the user-agent solution into…
3
votes
0 answers

How to fix "Error: getaddrinfo ENOTFOUND selenium-release.storage.googleapis.com selenium-release.storage.googleapis.com:443"

I'm new to Protractor. After installation using "npm install -g protractor" , when I'm trying to run "webdriver-manager update" command, getting below error. Error logs from command prompt - C:\Users\USER##\AppData\Roaming\npm>webdriver-manager…
mayankJ
  • 31
  • 1
  • 3
3
votes
3 answers

webdriver-manager update, Error: unable to get local issuer certificate

I am trying to install Protractor on the companies Windows laptop. One of the steps is to run webdriver-manager update command in the console. When running it, i am getting the following error. Do you know how can i bypass the error?…
3
votes
1 answer

Protractor webdriver-manager update occurs events.js:161 - Error: connect ETIMEDOUT

I installed npm install protractor -g and tried afterwards to update webdriver-manager with the command "webdriver-manager update" and it occurs: enter image description here If I try to start the webdriver-manager with the command…
3r1c
  • 376
  • 5
  • 20
3
votes
1 answer

Troubles shutdown selenium webdriver with protractor webdriver-manager

i'm attempting to upgrade protractor from version 4.0.14 to 5.0.0 with latest standalone selenium server + latest IE driver, and facing issue that on sending shutdown command via webdriver-manager, nothing happens, i still see process up and…
Igal Ore
  • 301
  • 4
  • 8
2
votes
3 answers

Python: How to set a custom webdriver download path for the built-in Selenium Manager

How to set a custom webdriver download path for the built-in Selenium Manager? Unlike other third-party driver managers, there is very little documentation available for this, and I could not find any related discussion anywhere. driver =…
2
votes
0 answers

.dockerVolume() of WebdriverManager causes (Connection reset) error on Linux-VM

I run my tests in docker by using webdrivermanager. I need to upload some files into the running docker. So, I will be able to use those files in my tests. I used .dockerVolume() like: WebDriverManager wdm =…
2
votes
1 answer

webdriver_manager opens google chrome instead of brave

webdriver_manager site has a code to start webdriver with brave, but instead of brave it opens it with google chrome. My selenium version 4.6.0 gave the following code for selenium 4 (I also tried the given codes for selenium 3) as it can be seen on…
AomineDaici
  • 635
  • 1
  • 5
  • 13
2
votes
2 answers

WebDriverManager download matching version of firefox driver

It seems like for Chrome and Edge, I can simply match my browser but is there a way to do the same with Firefox? I see from the documentation here, it only works for Chrome (which isn't true since it works for Edge). I don't have control of updating…
user19824680
2
votes
2 answers

SessionNotCreatedException: Could not start a new session. Response code 500 error using Selenium Java and WebDriverManager through pom.xml

I want to test my script on chrome beta version and for that reason I have installed chrome beta version but somehow I am not able to start it using Selenium Java. I have all the needed dependency added in pom.xml file regarding webdriver manager…
2
votes
1 answer

WebDriverManager.net - updating chrome driver automatically fails

I am having problems with updating chromedriver ( using WebDriverManager ). Trying with below code: private static WebDriver getChromeDriver() { ChromeOptions options = new ChromeOptions(); …
Tagyoureit
  • 359
  • 1
  • 5
  • 18
2
votes
0 answers

Run Selenium on Ubuntu server throws connection refused

I've been developing a .NET Core application which uses selenium to crawl some websites. Now it's time to deploy the application and I'm using Ubuntu 22.0.4. The code is running without any problem in my machine either using ChromeDriver or…
Miguel Andrade
  • 346
  • 3
  • 13
1 2
3
15 16