Closed arabellastrange closed 3 months ago
@arabellastrange, thank you for creating this issue. We will troubleshoot it as soon as we can.
Triage this issue by using labels.
If information is missing, add a helpful comment and then I-issue-template
label.
If the issue is a question, add the I-question
label.
If the issue is valid but there is no time to troubleshoot it, consider adding the help wanted
label.
If the issue requires changes or fixes from an external project (e.g., ChromeDriver, GeckoDriver, MSEdgeDriver, W3C),
add the applicable G-*
label, and it will provide the correct link and auto-close the
issue.
After troubleshooting the issue, please add the R-awaiting answer
label.
Thank you!
Update on running the code with a manually installed local chromedriver, back to the same error:
Traceback (most recent call last):
File "/home/user/app/web_search.py", line 86, in process_url
driver = webdriver.Chrome(service=ChromeService(executable_path='chromedriver-linux64/chromedriver'), options=options)
File "/usr/local/lib/python3.10/site-packages/selenium/webdriver/chrome/webdriver.py", line 45, in __init__
super().__init__(
File "/usr/local/lib/python3.10/site-packages/selenium/webdriver/chromium/webdriver.py", line 55, in __init__
self.service.start()
File "/usr/local/lib/python3.10/site-packages/selenium/webdriver/common/service.py", line 102, in start
self.assert_process_still_running()
File "/usr/local/lib/python3.10/site-packages/selenium/webdriver/common/service.py", line 115, in assert_process_still_running
raise WebDriverException(f"Service {self._path} unexpectedly exited. Status code was: {return_code}")
selenium.common.exceptions.WebDriverException: Message: Service chromedriver-linux64/chromedriver unexpectedly exited. Status code was: 127
same question
Chrome 127 was released in that timeframe, please report the issue to the Chrome folks.
Hi, @arabellastrange. This issue has been determined to require fixes in ChromeDriver.
You can see if the feature is passing in the Web Platform Tests.
If it is something new, please create an issue with the ChromeDriver team. Feel free to comment the issues that you raise back in this issue. Thank you.
This issue has been automatically locked since there has not been any recent activity since it was closed. Please open a new issue for related bugs.
What happened?
I have been using the chrome-linux driver in python +
selenium==4.22.0
with this call:and this call:
Which until, to the best of my knowledge, 23.07.2024 was working well. As of 25.07.2024 however, I am now seeing this error when I try to initialise the driver:
The error appears when I try to deploy my app on a server (I've tried a local reverse Nginx proxy (Linux) and HuggingFace spaces (Linux)) but not when I run the code locally on my (Windows) machine.
I've tried to solve this issue by:
selenium==4.23.0
webdriver-manager
withChromeService
So far, I've had no luck. Any ideas what the problem might be?
How can we reproduce the issue?
Relevant log output
Operating System
Debian
Selenium version
4.22.0
What are the browser(s) and version(s) where you see this issue?
Chrome (latest)
What are the browser driver(s) and version(s) where you see this issue?
ChromeDriver-Linux64 (latest)
Are you using Selenium Grid?
No