You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
File "venv\Lib\site-packages\aiohttp_chromium\client.py", line 1206, in _start_chromium
driver = await selenium_webdriver.Chrome(**chromium_args)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
...
TimeoutError: Couldn't connect to chrome within 30 seconds
seems like some of chromium_args make chrome start too slow
try to raise the timeout to 99999 seconds
try to remove some of chromium_args
I removed **chromium_args on line 1206 in client.py, but still the same problem persists. I'm sorry, but I'm running out of time, so I give up this.
Instantiating Chrome before using this library (and after importing this library) does not cause the error, so it is likely that some global settings change after the instantiation of ClientSession to be the cause.
First this happened:
Therefore I changed the code that calls
find_chrome_executable()
and specified the path manually. Then:This is odd because the following tutorial provided by the
selenium_driverless
docs worked fine at least until line 11 where TimeoutError is raised.OS: Windows 10, Python: 3.11
Thanks in advance
The text was updated successfully, but these errors were encountered: