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

After test:report:chrome Report generation done, Terminal not closing the instance, it keeps running

I am using protector, selenium for running the UI automation. For chrome driver I am using webdriver-manager for testing the UI Automation. It run successfully, browser also close but it keeps running the terminal instance can anyone help me on…
2
votes
2 answers

Could not get version for google-chrome with the command: powershell "$ErrorActionPreference='silentlycontinue' using WebDriver manager and Selenium

I'm trying to create a script using python that separate 2 kind of websites , the one with SPF included and the others with SPF , and classify them using python, so in the beginning it worked perfectly but these daysit gives me a message error that…
2
votes
2 answers

Python Webdrivermanager .install() does not work for edge in custom webdriver installation location

I use Webdrivermanager to update my drivers. But for the Edge browser I get errors. elif preferred_browser == "Edge": service = Edge_Service(EdgeChromiumDriverManager().install()) service.creationflags = CREATE_NO_WINDOW driver =…
Muddyblack k
  • 314
  • 3
  • 16
2
votes
3 answers

How can I download Appropriate Chromedriver in Protractor using Webdriver-Manager

I have designed a cucumber-protractor based automation framework where everything is working fine except for the Webdriver-manager. I need to update the binaries manually each time the IT Department updates google chrome version. When i use command…
2
votes
1 answer

Error using webdriver-manager with pyinstaller

My webdriver-manager worked perfectly but when I made .exe file with pyinstaller I got error below. I find out that if I won't put --noconsole to pyinstaller command it will work but with --noconsole the program isn't working. Here is my code: from…
2
votes
0 answers

Pyinstaller & Selenium: When chromedriver is called, a blank chromedriver console window appears

I have a pyinstaller exe program that takes user input from a tkinter GUI, then uses Selenium Chromedriver to find some data using the input, then displays the results in the GUI. When I run the exe, there's a blank chromedriver console window that…
2
votes
2 answers

Angular e2e tests failing in GitHub actions because of Chrome vs Chromedriver version mismatch

My open source Angular project had a successfull GitHub action to lint, build, test, and e2eeverything. However, since a short while, I'm seeing this: [00:20:01] I/launcher - Running 1 instances of WebDriver [00:20:01] I/direct - Using ChromeDriver…
Jeroen
  • 60,696
  • 40
  • 206
  • 339
2
votes
1 answer

How to writerows without csv index headers?

I am attempting to write the 2nd value in text_entries to a file, but I do not want to include the first value in my .csv -- such as index2, index3, etc. How can I write new rows without adding index headers to my CSV output? Code below: import…
2
votes
3 answers

java.lang.NullPointerException in ExpectedConditions using Selenium through WebDriverManager

Following line gives error: wait.until(ExpectedConditions.visibilityOfElementLocated(By.xpath("//input[@id='username']"))); Code is as below: WebDriverManager.chromedriver().setup(); ChromeOptions options = new…
2
votes
4 answers

Protractor - log type 'performance' not found error

webdriver-manager 12.1.5 protractor Version 5.4.2 Chrome version 75.0.3770.100 browser.manage().logs().get('performance'); This used to work fine before upgrading my webdriver-manager and protractor version. (node:27715)…
SUM
  • 1,651
  • 4
  • 33
  • 57
2
votes
1 answer

Set alternative CDN for ChromeDriver binaries on @angular/cli

I'm working on a project based on Angular (5.0.0). As I am behind a proxy, I want to specify an internal CDN where ChromeDriver is hosted. My .npmrc file contains the following property: chromedriver_cdnurl=http://my-internal-cdn/chromedriver/ (also…
Romain Linsolas
  • 79,475
  • 49
  • 202
  • 273
2
votes
2 answers

Chrome browser instance pops up often while automated tests are running

I have my current test suite for e2e tests in protractor. To update it to run in headless chrome, I updated my protractor version which in turn updated my webdriver-manager which in turn updated the chromedriver version to the latest i.e. 2.34 When…
2
votes
3 answers

webdriver-manager update failed to download chrome driver and update-config.json

When I clean webdriver-manager and update, it is unable to download chrome driver and update-config.json. Later on when I start protractor it is complaining couldn't find update-config.json. package.json "scripts": { "webdrivermanager:update":…
Surendra Jnawali
  • 3,190
  • 5
  • 28
  • 44
2
votes
1 answer

Protractor/webdriver-manager error: "Cannot get automation extension"

I am running protractor tests, and within the last couple days started getting this error: WebDriverError: unknown error: cannot get automation extension from unknown error: page could not be found: chrome…
John123
  • 85
  • 9
2
votes
1 answer

Error: self signed certificate in certificate chain

I can run the selenium server with fresh rebooting of my Windows 7. However if I kill the server and start it again, I will get this error. Sometimes doing webdriver-manager update--ignore_ssl may fix the problem, but most of time it won't fix. Any…
zs2020
  • 53,766
  • 29
  • 154
  • 219