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
34
votes
9 answers

Protractor in STS IDE -> Could not find update-config.json

Currently I have Protractor v.5.1.1, Node.js v.6.10.0 All protractor tests work in window console but when I try to run them from STS IDE I get below error. Of course i did 'webdriver-manager update' but it doesn't help at all. Does anyone has an…
EdXX
  • 872
  • 1
  • 14
  • 32
12
votes
7 answers

Protractor webdriver-manager chromedriver update

There seems to be a issue with chromedriver 2.2 and the newest version of Chrome. This issue has to deal with the protractor not being able to send tab keys with 2.2. If I do webdriver-manager update, it does not update to the chromedriver 2.4. I…
Maccurt
  • 12,655
  • 7
  • 32
  • 43
9
votes
3 answers

Tests are failing after google chrome is upgraded to version 76

I am running tests using protractor(version 5.4.2) inside the docker file .After google chrome is upgraded to version 76 , tests have started to fail giving this error : SessionNotCreatedError: session not created: Chrome version must be between 71…
Dolly Agarwal
  • 111
  • 1
  • 6
8
votes
5 answers

Webdriver-manage update error

I am new to using protractor. Trying to install a standalone webdriver-manager but getting following error. Node v7.2.0 Protractor 5.0.0 webdriver-manager 11.1.1 when I run webdriver-manger update --standalone I get following error [17:25:21]…
Ami
  • 91
  • 1
  • 2
8
votes
4 answers

How do we stop webdriver-manager?

I am using npm package webdriver-manager to start driver on machine. It fails if the driver is already started. Is there a way that I can stop and restart the webdriver? Or something like ignore if already started?
Ronak Agrawal
  • 1,006
  • 1
  • 19
  • 48
7
votes
1 answer

webdriver-manager update command always fails first time but passes after

When I execute webdriver-manager update for the first time I always see the following error PS H:\> webdriver-manager update webdriver-manager: using global installed version 12.1.2 [09:55:15] I/config_source - curl…
DublinDev
  • 2,318
  • 2
  • 8
  • 31
7
votes
1 answer

Error: Invalid or corrupt jarfile ./node_modules/protractor/node_modules/webdriver-manager/selenium/selenium-server-standalone-4.0.0-alpha-1.zip.jar

When running webdriver-manager update, it downloads a file with -alpha-1.zip.jar. This does not appear to be the right file format. The example below is to just download the selenium standalone jar file: > ./webdriver-manager update --standalone…
cnishina
  • 5,016
  • 1
  • 23
  • 40
6
votes
2 answers

When using Protractor 5.4.2, webdriver-manager downloads 2.46 which is not compatible with Chrome 74

Protractor 5.4.2 uses webdriver-manager 12 which downloads Chromedriver 2.46. Chromedriver 2.46 supports Chrome 71-73 (see http://chromedriver.chromium.org/downloads). We need to download Chromedriver 74.0.3729.6. I also see that there is a…
cnishina
  • 5,016
  • 1
  • 23
  • 40
5
votes
5 answers

Selenium ChromeDriverManager doesn't downloads the latest version of ChromeDriver

I have an error: E selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 102 E Current browser version is 109.0.5414.120 with binary path C:\Program…
5
votes
1 answer

Selenium ChromeDriverManager Webdriver Install not updating through proxy

I need to access a website using selenium and Chrome using python. Below is shortened version of my code. from selenium import webdriver from webdriver_manager.chrome import ChromeDriverManager from selenium.webdriver.chrome.service import…
5
votes
3 answers

Selenium ChromeDriver issue using Webdriver Manager for Python

When running this code: from selenium import webdriver from selenium.webdriver.common.keys import Keys from webdrivermanager.chrome import ChromeDriverManager driver =…
5
votes
4 answers

How to suppress logging in WebDriverMangager for Python?

There is a similar question here, but that is for Java. I wish to suppress the following: INFO:WDM:====== WebDriver manager ====== INFO:WDM:Current google-chrome version is 88.0.4324 INFO:WDM:Get LATEST driver version for 88.0.4324 INFO:WDM:Driver…
5
votes
1 answer

python webdriver_manager chrome custom profile

How can I make webdriver_manager.chrome to use a custom chrome user profile? I know for selenium webdriver I can specify like this: options = Options() options.add_argument(f'user-data-dir={script_path}\\User Data\\profile') driver =…
5
votes
1 answer

Error in opening chrome browser on unix using selenium webdriver_manager

from selenium import webdriver from webdriver_manager.chrome import ChromeDriverManager driver = webdriver.Chrome(ChromeDriverManager().install()) driver.get("http://www.python.org") driver.quit() Error Received : Traceback (most recent call…
5
votes
2 answers

How to stop protractor from downloading latest chromedriver?

I am running E2E tests using Protractor on Bamboo. I got this error unknown error: Chrome failed to start: exited abnormally (unknown error: DevToolsActivePort file doesn't exist) Then I found that I had to downgrade to 2.37 version of Chromedriver.…
Jake J
  • 141
  • 1
  • 2
  • 10
1
2 3
15 16