Skip to main content
Filter by
Sorted by
Tagged with
2 votes
3 answers
221 views

I have a JavaFX application that uses Selenium to scrape some websites. Everything works great when I run the application through IntelliJ. However, I am packaging the final product into an exe file ...
chravis's user avatar
  • 125
0 votes
1 answer
672 views

I'm trying to run chromedriver and I am using Boni Garcia's WebDriverManager (v6.3.3 - latest version)for version control. The app is here: https://github.com/Vanilla2016/accountBatch I am running the ...
Dominic Keefe's user avatar
4 votes
2 answers
131 views

Using ChromeDriverManager and the following code block: if platform.system() == "Windows": driver_path = ChromeDriverManager(os_system_manager=OperationSystemManager(os_type="win64&...
Wei Jie's user avatar
  • 34
0 votes
2 answers
247 views

-rwxr-xr-x 1 kyle kyle 6132584 Feb 24 09:27 /usr/local/bin/geckodriver echo $PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/home/kyle/.dotnet/...
user1604008's user avatar
  • 1,179
0 votes
0 answers
70 views

I have a .NET Core application that uses selenium to click a button. It runs in a docker. I would like to run this docker on my raspberry pi5 For this I install chromium in my docker like this: RUN ...
pinkicious's user avatar
1 vote
1 answer
384 views

I want to force the selenium manager to download a browser instead of using any locally installed one. According to the doc that option exists. But I really don't understand when I should define the ...
jjbbss's user avatar
  • 179
0 votes
1 answer
1k views

I am using selenium-manager in Python, and I am getting an error in GitLab CI. The error is as follows. { "level": "ERROR", "timestamp": 1708741147, "message&...
kimata's user avatar
  • 1
6 votes
3 answers
4k views

When running the most basic selenium script it causes the error - selenium.common.exceptions.WebDriverException: Message: Unable to obtain working Selenium Manager binary; C:\Users\User\.conda\envs\...
user avatar
0 votes
0 answers
92 views

I am currently trying to get Selenium Manager to point to Artifactory to fetch our ChromeDrivers. I am wondering if anyone has successfully done this and how you did it? I know we need to set the env ...
THFC-Dude-14's user avatar
1 vote
1 answer
218 views

Unfortunately the official documentation didn't answer directly to the question. Let's consider again the typical example of driving Chrome with Selenium. And this time, suppose Chrome is not ...
aik.fiend's user avatar
1 vote
1 answer
2k views

My selenium based automation framework is using selenium 4.15. It's able to download selenium-manager.exe to C:\Users\xxxx.cache\selenium\manager\0.4.15 folder. But due to firewall/proxy of my ...
Vikram Verma's user avatar
0 votes
1 answer
1k views

I just updated and verified that I am using Selenium 4.13. It's my understanding that Selenium Manager was being used with everything after Selenium 4.10 so I wouldn't have to worry about downloading ...
JimmyG's user avatar
  • 655
1 vote
1 answer
4k views

I am using WebDriverManager - for Chrome driver - recently after chrome update to 116 was facing issues with WebdriverManager - not able to get ChromeDriver session - Removed WebdriverManager from POM ...
AlokB's user avatar
  • 11
0 votes
0 answers
136 views

Post updating the chrome version to 116, I am able to lauch the browser but not able to lauch the application. image link- Below code logic, I have tried and also I have tried the setproperty but no ...
Bhairu's user avatar
  • 134
0 votes
0 answers
116 views

I'm using 4.11.0 version of selenium and it has selenium manager now. But it is chrashing when I'm trying to run tests. Please help me with solutions: I tried removing webdrivermanager dependency... ...
Soubhagya Chulki's user avatar
-1 votes
1 answer
395 views

Exception: CONTEXT SWITCHER: Exception while switching context: Message: An unknown server-side error occurred while processing the command. Original error: No Chromedriver found that can automate ...
Vybhav Sreshta's user avatar
3 votes
3 answers
14k views

I'm trying to run this simple code.. But I get a error that I can not fix. Can someone help me ? Chrome driver is installed I check: pi@Rpi:~ $ chromedriver --version ChromeDriver 92.0.4515.98 (...
Paulvanderheijden's user avatar
4 votes
5 answers
4k views

How to set a custom webdriver download path for the built-in Selenium Manager? Unlike other third-party driver managers, there is very little documentation available for this, and I could not find any ...
Hemendra's user avatar
  • 111
1 vote
1 answer
734 views

My Chrome browser got updated to 115.0+ today and my RPAs are no longer working. I've read that past Chrome version 115 I need to start using Selenium Manager. I just upgraded to Selenium 4.10 and ...
JimmyG's user avatar
  • 655
6 votes
5 answers
43k views

I can't figure out why my code it's always getting an error This is my code: from selenium import webdriver url = "https://google.com/" path = "C:/Users/thefo/OneDrive/Desktop/summer ...
Polaretti's user avatar
1 vote
1 answer
4k views

I'm trying to debug why my selenium won't work. I've been looking through Heroku docs for how to handle using a selenium webdriver when deployed to Heroku, but I've encountered this bug recently: ...
Ian Murray's user avatar