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

Selenium just opens Chrome and stops the program using ChromeDriverManager

My problem is that I want to execute the whole code, but it just opens Chrome and stops the program. What could be the reason for this? I installed every package needed such as the chromedriver into the same directory as the scriptfile.[![enter…
0
votes
0 answers

Selenium Maven build error - Java class. loader constraint violation - webdrivermanager

I am using Selenium Junit framework. Maven build was working fine, suddenly its failing due to below error. I am using latest version of WebDriverManager. Tried with older versions of webdrivermanager, still same error. Maven command: mvn clean test…
0
votes
1 answer

Getting EdgeDriver Version in Selenium C#

I'm trying to update my "chromedriver.exe" and my "msedgedriver.exe" when I start my program automatically. I am able to download both exes with their correct versions, but I need to acces to it's versions from my code and I'm having some trouble…
0
votes
1 answer

why WebDriverManager is not in synch when Threadpool & CountDownLatch is used?

I am trying to run a Selenium Webdriver MultiThreaded Test using WebDriverManager ( Reference was taken -> https://www.programcreek.com/java-api-examples/?api=io.github.bonigarcia.wdm.WebDriverManager @Test public void test() throws…
0
votes
0 answers

WebDriverManager fetching outdated chrome driver

My WebDriverManager appears to be attempting to fetch a chromedriver that is outdated, and I am not sure why. I've checked already that my Chrome is up to date. (107.0.5304.107 as of day of writing) from selenium import webdriver from…
0
votes
3 answers

I´ve got some errors in my code, what can i do?(I am programming whit python 3.10)

I was doing a program that consisted of through these modules below create a new page on google, but it was not possible, because of some errors. from selenium import webdriver from webdriver_manager.chrome import ChromeDriverManager from…
0
votes
0 answers

How to use webdrivermanager on a M1 mac

I am trying to install and setup webdrivermanager on my new work machine (M1 mac). I first ran: sudo pip install webdrivermanager, and then I want to run: sudo webdrivermanager firefox chrome --linkpath /usr/local/bin However, this command ends up…
0
votes
0 answers

Sel python - How to set custom path for downloads with webdriver-manager

I have tried a lot to set a custom path for downloads while using webdriver-manager 3.8.4 for my script. Whenever my script tries to download a file, the download keeps failing. I do not get any error in the console which makes it worse. The steps I…
Libin Thomas
  • 829
  • 9
  • 18
0
votes
0 answers

"WebDriverManagerException: There was an error creating WebDriver object for Firefox" Selenium 4.0 + WebdriverManager 5.3.0

Trying to run some tests on a Maven based project with Cucumber, Selenium and Java 8. Launching o chrome works fine, but not in Firefox. Throwing the following error when executing mvn clean…
0
votes
0 answers

TestRunner returning NPE when running as TestNG Test

I'm practicing some automation with Java + Cucumber + TestNG. I programmed a initialSetup class with all the of the WebDriverManager basic configuration I want to use. If I run a Cucumber Feature directly from the Feature File it works fine, but if…
0
votes
2 answers

How does one implement the headless option in the Selenium 4 WebDriver-Manager?

I have but one hurdle to overcome before I can truly call my first bot complete and that is to figure out where to put the options class(?) in order to run ChromeDriverManager in headless mode, and so it stops opening chrome instances! The way the…
0
votes
0 answers

Trying to run selenium scripts inside docker container

FROM maven:3-eclipse-temurin-11 WORKDIR /home/app RUN apt-get update && apt-get install -y wget && wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb && apt-get install ./google-chrome-stable_current_amd64.deb -y &&…
0
votes
2 answers

WebDriverManager Java download matching version on device

I am using WebDriverManager to install the drivers. However, the setup method seems to install the latest version and not the matching version on my device. Although they differ, it seems to still work. Is it needed to specify the version to be more…
user19824680
0
votes
1 answer

Selenium WebDriver - Invalid Cookie Domain Exception on increasing thread count to 20 but runs fine with 15

In my selenium automation framework I am running scripts in parallel with thread count 15, with thread count 15 it runs without any issues. When I increase thread count to 20 or 30 then I am getting …
sam
  • 289
  • 7
  • 19
0
votes
1 answer

WebdriverManager issue : Chrome Browser not opening with Selenium +Python

I am trying to open Chrome Browser with Selenium+Python using webdrvermanager. Selenoim- 4.0.0 webdrivermanager- 3.5.3 python-3.8.10 ``` def test_selenum(self): #driver =…