21 questions
2
votes
3
answers
221
views
Selenium ChromeDriver not working in JavaFX application packaged as an exe
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 ...
0
votes
1
answer
672
views
org.openqa.selenium.SessionNotCreatedException: Could not start a new session. Response code 500 using WebDriverManager for chromedriver 145.0.7632.26 [closed]
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 ...
4
votes
2
answers
131
views
How to specify the operating system when downloading ChromeDriver using ChromeDriverManager?
Using ChromeDriverManager and the following code block:
if platform.system() == "Windows":
driver_path = ChromeDriverManager(os_system_manager=OperationSystemManager(os_type="win64&...
0
votes
2
answers
247
views
Trying to run selenium in linux but can't find driver
-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/...
0
votes
0
answers
70
views
Selenium Manager installs x86-64 in Docker on Raspberry Pi (ARM64) — How to force ARM64 version?
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 ...
1
vote
1
answer
384
views
force selenium manager to download browser in python
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 ...
0
votes
1
answer
1k
views
selenium-manager failed with "dns error: failed to lookup address information: Name does not resolve"
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&...
6
votes
3
answers
4k
views
Unable to obtain working Selenium Manager binary
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\...
0
votes
0
answers
92
views
Selenium Manager - Artifactory Binaries
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 ...
1
vote
1
answer
218
views
How to tell to Selenium Manager to use the same version of CfT as locally installed version of Chrome is?
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 ...
1
vote
1
answer
2k
views
Is it possible to move selenium manager location from cache to another directory for downloading webdriver?
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 ...
0
votes
1
answer
1k
views
Using Python Selenium 4.13, still getting "your version of chrome not supported message"
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 ...
1
vote
1
answer
4k
views
Selenium Manager Vs WebDriverMAnager - From selenium 4.6 do we really need WebDriverManager
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 ...
0
votes
0
answers
136
views
Unable to access the application upon updating the chrome browser(v116)
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 ...
0
votes
0
answers
116
views
Selenium Manager is chrashing for chrome 115 and 116 and above
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... ...
-1
votes
1
answer
395
views
Context switching failing in the mobile apps with chrome version 115.XX.XX.XX
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 ...
3
votes
3
answers
14k
views
Selenium 4.11.2 with ChromeDriver and Chrome
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 (...
4
votes
5
answers
4k
views
Python: How to set a custom webdriver download path for the built-in Selenium Manager
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 ...
1
vote
1
answer
734
views
Selenium Manager Setup Issues
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 ...
6
votes
5
answers
43k
views
selenium.common.exceptions.NoSuchDriverException: Message: Unable to obtain chromedriver using Selenium Manager error using Selenium and ChromeDriver
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 ...
1
vote
1
answer
4k
views
"Failed to create Chrome process" - Selenium Webdriver Error
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:
...