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
2
votes
2 answers

webdriver-manager update-config.json absolute paths

At webdriver-manager\selenium\update-config.json for "last" and "all" JSON parameters, I have absolute paths. How I can set relative paths to them? I tried "..\" and ".\" but it's not working. Any ideas?
2
votes
1 answer

webdriver-manager how to install selenium version npm

I installed webdriver-manager by installing protractor via npm install with package.json. Under the root dir /webdriver-manager node module there is a config.json that contains { "webdriverVersions": { "selenium": "2.53.1", …
awaken
  • 789
  • 1
  • 11
  • 22
2
votes
2 answers

webdriver-manager update --ignore_ssl no longer works on 12.0.1

I'm getting an error when performing the following in 12.0.1: webdriver-manager update --ignore_ssl It just returns events.js:160 throw er; // Unhandled 'error' event ^ Error: self signed certificate in certificate chain at Error…
kalypzo
  • 102
  • 2
  • 6
2
votes
1 answer

Webdriver manager update fails on version 10.0.2

I updated webdriver-manager from version 10.0.1 to version 10.0.2, and since then I get the following error when I run the update command: $ webdriver-manager update webdriver-manager: using global installed version 10.0.2 [09:10:50] E/config -…
Bart van den Burg
  • 2,166
  • 4
  • 25
  • 42
2
votes
1 answer

how do you start webdriver-manager start in the Config file

I'm trying to get my config file to the point where I don't have to go to the mac terminal and type webdriver-manager start. Is it possible to have the config file do that? I have listed my code below to give you idea what I have set up. I just…
Tyson H.
  • 107
  • 1
  • 1
  • 7
1
vote
0 answers

Protractor: Webdriver-manager update downloads an incompatible version of chromedriver

Chrome Browser version in my machine 116.0.5845.111 (Official Build) (64-bit). But Webdriver manager downloads chromedriver_114.0.5735.90. Error: E/launcher - session not created: This version of ChromeDriver only supports Chrome version…
1
vote
1 answer

My chrome version got updated automatically to 115 version and when i run webdriver-manager update command why its downloading 114 version of chrome?

My chrome version got updated automatically to 115 version and when i run webdriver-manager update command why its downloading 114 version of chrome? Even i tried to download 115 version directly and paste it in webdriver manager and run…
1
vote
1 answer

No such driver version 115.0.5790.110 for linux64 error using ChromeDriverManager

I have a python script where it autoinstalls chromedriver with ChromeDriverManager package. Today it gave me an error of: No such driver version 115.0.5790.110 for linux64 Line of code: driver =…
1
vote
0 answers

Facing Issue for automation testing using selenium and c# for Edge browser in jenkins

I have my code like below for initializing edge browser var options = new EdgeOptions(); options.UseChromium = true; options.AddArgument("disable-gpu"); options.AddUserProfilePreference("download.default_directory",…
1
vote
1 answer

Selenium WebDriverManager when the internet is down

We are using Selenium WebdriverManager to make sure the version of Selenium Webdriver matches the current version of Chrome. It serves its purpose well. However, there is a problem when we lose our internet connection. At this point, Chrome is…
William Jockusch
  • 26,513
  • 49
  • 182
  • 323
1
vote
0 answers

how to resolve error Invalid Status code=403 text=Forbidden in selenium 4

`Facing error while launching chrome driver. WebDriverManager.chromedriver().setup(); ChromeDriver driver = new ChromeDriver(); driver. manage().window().maximize(); Not working to launch chrome driver.`
1
vote
1 answer

Selenium is randomly killed on AWS EC2

I am working on a Streamlit app that runs properly locally, but when I initiate the web scraping process with multiple threads, the website freezes and the process is killed. The logs in the console indicate the links are being scraped, so I am not…
1
vote
1 answer

Webdriver-manager for Selenium Javascript tests

I am new to writing tests in Selenium using Javascript and want to ask whether there exists a Driver Manager like WebDriverManager that you can use in JS tests. I've searched quite a lot and couldn't find anything. I think I am just missing…
1
vote
1 answer

How to address certificate verify failed: unable to get local issuer certificate error using Selenium and ChromeDriverManager

Even with the ton of information about this, each solutions won't work for me, I'm trying to run a basic selenium script and I get this error. Is there any solutions for my case (note that i use 3.10 python and that I'm working on a corporate…
1
vote
1 answer

How to use .dockerVolumes of WebDriverManager?

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 initalised my tests with the code block below: WebDriverManager wdm =…