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
5
votes
3 answers

Can't start webdriver-manager after upgrading of jdk, node & webdriver

I've upgraded Node, Protractor, JDK & webdriver to the latest versions. And now I can't start webdriver-manager anymore not by CMD and not by Node command line. Any idea? Error: Your environment has been set up for using Node.js 0.12.2 (x64) and…
Idan E
  • 1,299
  • 4
  • 17
  • 42
5
votes
2 answers

how can I manually install selenium webdriver-manager?

I am trying to install protractor. When I call webdriver-manager start I get: Selenium Standalone is not present. Install with webdriver-manager update --sta dalone I can't install this with webdriver-manager update because of connection issues so…
Leeuwtje
  • 2,161
  • 5
  • 21
  • 28
5
votes
1 answer

Is `webdriver-manager start` necessary?

I'm delving into the world of Protractor tests for AngularJS. All the tutorials recommend I execute the following after webdriver-manager update and prior to executing the test: webdriver-manager start According to the webdriver-manager man, the…
Housni
  • 963
  • 1
  • 10
  • 23
5
votes
5 answers

Error running 'webdriver-manager start' on Windows 8.1

I am attempting to run end-to-end test for an angular project using protractor and am getting the following error when I run the command 'webdriver-manager start' I have run webdriver-manager update, and selenium standalone and chromedriver are up…
Ryan Spears
  • 2,963
  • 2
  • 31
  • 39
4
votes
4 answers

What causes java.lang.NoClassDefFoundError: org/openqa/selenium/internal/Require when using WebDriverManager 5.0.3

I have a spring boot application, that I want to test with Selenium. I'm using WebDriverManager v5.0.3 When settin up the WebDriver WebDriverManager.chromedriver().setup(); I get an exception: java.lang.NoClassDefFoundError:…
4
votes
2 answers

In Protractor, Error "session not created: This version of ChromeDriver only supports Chrome version 79"

I have researched a lot and used many possible solutions mentioned in the various forums, none of them worked for me. I am trying to run this in CI/CD pipeline although able to run the protractor test cases in local and able to launch the browser…
4
votes
2 answers

Using Protractor with Firefox or IE

Protractor works fine with Chrome, but I cannot get it to start up Firefox or Internet Explorer. Windows 7 Node v6.9.1 Snippet from package.json: "scripts": { .... "webdriver-manager-update": "webdriver-manager update --ie", …
Marco Eckstein
  • 4,448
  • 4
  • 37
  • 48
4
votes
2 answers

Syntax error on webdriver-manager 10.2.9

Post from issue #170: After updating to the newest version, I get the following error on running 'webdriver-manager' command. C:\Users\(user)\AppData\Roaming\npm\node_modules\webdriver-manager\built\lib\cli\logger.js:66 info(...msgs)…
cnishina
  • 5,016
  • 1
  • 23
  • 40
4
votes
4 answers

selenium webdriver manager update - npm

I tried to update the selenium webdriver using the "webdriver-manager", but i get the error as, Error: Got error Error: read ECONNRESET from https://selenium-release.storage.googleapis.com/2.48/selenium-server-standalone-2.48.2.jar Error: Got error…
AJJ
  • 3,570
  • 7
  • 43
  • 76
4
votes
3 answers

Protractor - error when starting webdriver-manager, seleniumProcess.pid: undefined

I am facing a problem when starting webdriver-manager in node_modules\protractor with windows 7. the command is : node webdriver-manager start Then I got the following error messages: seleniumProcess.pid: undefined events.js:85 throw er; //…
user1402725
  • 87
  • 2
  • 8
4
votes
0 answers

Using Protractor webdriver-manager start errror as events.js:72 throw er; // Unhandled 'error' event

I unable to start the selenium server by using protractor in cmd as webdriver-manager start I have update webdriver-manager update -g and shows are upto date But problem is as given below I have also updated java path too…
3
votes
2 answers

WebDriverManager - 'The remote server returned an error: (404) Not Found.'

I am using the Selenium WebDriverManager nuget package to manage driver versions. When I try to get the edge driver: var driverManager = new DriverManager(); driverManager.SetUpDriver(new EdgeConfig()); It fails with: System.Net.WebException: 'The…
sashoalm
  • 75,001
  • 122
  • 434
  • 781
3
votes
3 answers

selenium.common.exceptions.WebDriverException: Message: 'chromedriver' executable needs to be in PATH using ChromeDriverManager and Python

I tried to fix the above error by check Stackoverflow and other resources from the internet. But I am getting the error. I have installed the webdriver_manager also. But I could not able to run the code. I am using kubuntu, pycharm. Below is my…
3
votes
1 answer

How to use selenium webdriver manager with node/javascript?

I want to have the latest browser engines without manually downloading them, thus I found webdriver manager. Though selenium documentation refers, regarding webdriver manager, that // There is not a recommended driver manager for JavaScript at this…
João Pimentel Ferreira
  • 14,289
  • 10
  • 80
  • 109
3
votes
3 answers

SSL Certificate Verification Failed - When using WebDriverManager in Python Selenium framework

I am using Python Selenium framework. In here, to launch the chrome browser, instead of giving chrome binary (chrome.exe) path, I am trying to use WebdriverManager to get the latest version of Chrome driver (based on browser version). Below is the…
1
2
3
15 16