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
1
vote
1 answer

ModuleNotFoundError: No module named 'webdriver_manager' error using Webdriver Manager for Selenium Python

I am creating a project to automatically open a page, I installed Selenium, but it says that there: no such module as webdriver_manager and the directory "C:\Users\Nina\chromedriver.exe" is not valid. Here's my code: from selenium import…
1
vote
0 answers

System.Net.WebException : The remote server returned an error: (404) Not Found

In order to avoid browser driver version mismatch issue every time I execute my Selenium tests using xUnit test runner, I have added below line of code to my .cs file new DriverManager().SetUpDriver(new ChromeConfig(),…
Poovin
  • 164
  • 3
  • 15
1
vote
2 answers

Specify download location in webdrivermanager java

How can i specify the download location of the chromedriver in webdrivermanager? Im using Java. At the moment its downloading to ~\cache\selenium\chromedriver\ im using webdrivermanger version 5.0.3
Zordanian
  • 43
  • 1
  • 8
1
vote
1 answer

chrome binary installed by webdrivermanager is not working

I see in logs that webdrivermanager successfully downloads the chrome binary inside .m2. However, it is still getting picked from some other location. The same implementation works locally but not in Azure Pipeline. ---------------- TEST STARTED:…
paul
  • 4,333
  • 16
  • 71
  • 144
1
vote
0 answers

Webdriver manager ValueError: Could not get version for Chrome with this command

It seems that webdriver manager always returns this error and I can figure why. I have carefully installed webdriver-manager but it still doesn't work... Code : from selenium import webdriver from webdriver_manager.chrome import…
Yaya Ney
  • 11
  • 1
1
vote
0 answers

Webdriver-manager is not working on python exe

I have a small python script: from selenium import webdriver from webdriver_manager.chrome import ChromeDriverManager from tkinter import * def go_google(): driver = webdriver.Chrome(ChromeDriverManager().install()) …
Jawad
  • 166
  • 7
1
vote
2 answers

Python Webdriver Manager: Linux Problem on Webdriver Manager for Python

Linux Problem on Webdriver Manager Python Details: System - Manjaro Linux IDE: Visueal Studio Code Currently, I used the Webdriver Manager tutorial in Python to make my work easier. But IE and Edge are giving me problems. The Integration: from…
1
vote
2 answers

How to autoupdate chromedriver

i need help getting webdrivermanager to autoupdate chromedriver. I've read the forums on updating this and they dont make any sense. I'm trying to do this with python 3.x but i keep running into errors. Here is my current code import…
1
vote
1 answer

WebDriverManager integration with jenkins

I am having issues in running WebDriverManager in Jenkins this is my code: WebDriverManager.firefoxdriver().setup(); FirefoxOptions firefoxOptions = (FirefoxOptions) options; return new…
kidulf
  • 419
  • 1
  • 6
  • 17
1
vote
0 answers

I get this error at mid of test case when I use WebdriverManager with selenium in parallel. 'disconnected: not connected to DevTools'

disconnected: not connected to DevTools (Session info: chrome=87.0.4280.88) Build info: version: '3.141.59', revision: 'e82be7d358', time: '2018-11-14T08:17:03' System info: host: 'C02YM263JHD2', ip: 'fe80:0:0:0:14d0:b87a:ad38:1e24%en0', os.name:…
1
vote
0 answers

org.openqa.selenium.WebDriverException;unknown error: Chrome failed to start: exited abnormally - Error while executing the test suite in JENKINS

I have a testNG.xml test suite that i execute as maven project, the maven command works fine when executed through my terminal in local machine, but executing the same through Jenkins gives below…
1
vote
2 answers

ChromeDriver unzipping 85.0.4183.38 version instead of 84.0.4147.89 using WebdriverManager for Selenium Protractor

I am trying to execute webdirver-manager update command. But chrome driver unzipping 85.0.4183.38 instead of 84.0.4147.89 as my chrome browser version is 84.0.4147.89. I tried the following: Webdriver-manager update --version.chrome=84.0.4147.89 a.…
1
vote
2 answers

Version mismatch between ChromeDriver & Chrome when running Protractor tests, but no update available

I am trying to run Protractor tests on my Angular app, but am facing an issue with my version of ChromDriver not matching my version of Chrome. I'm able to run webdriver-manager start fine with no issues, but when I try to run my tests I get this…
user9847788
  • 2,135
  • 5
  • 31
  • 79
1
vote
1 answer

Why isn't the 'chromedriver' executable in the PATH even after using ChromeDriverManager through Selenium and Python

I'm trying to click the "Launch Earth" button with this block of code. from selenium import webdriver from webdriver_manager.chrome import ChromeDriverManager driver = webdriver.Chrome(ChromeDriverManager().install()) from…
1
vote
0 answers

WebDriverManagerException when using WebDriverManager for selenium

I am using WebDriverManager api to initiate browser. I am using the following code to connect to chrome browser. WebDriverManager.chromedriver().setup() Exception is: io.github.bonigarcia.wdm.config.WebDriverManagerException:…
tulasi ram
  • 11
  • 2