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
When I try and execute the Python script, I get the following error:
/usr/lib/python3/dist-packages/requests/__init__.py:89: RequestsDependencyWarning: urllib3 (2.2.3) or chardet (3.0.4) doesn't match a supported version! warnings.warn("urllib3 ({}) or chardet ({}) doesn't match a supported " Traceback (most recent call last): File "screenshots.py", line 19, in <module> driver = webdriver.Chrome(ChromeDriverManager().install(), options=options) TypeError: __init__() got multiple values for argument 'options'
Looks like there's a problem with the way some of these libraries are called. Have you seen this error message before?
The text was updated successfully, but these errors were encountered:
This is because the newest screenshots.py has completely new code comapred to the latest release (v1.5.0) Go download the newest zip file from the green code button link at the top of the main page to get the latest. Then run pip install -r requirements.txt because there's new stuff in there, rename config.ini.example to config.ini and set it up - then you should be good to go after that.
When I try and execute the Python script, I get the following error:
/usr/lib/python3/dist-packages/requests/__init__.py:89: RequestsDependencyWarning: urllib3 (2.2.3) or chardet (3.0.4) doesn't match a supported version!
warnings.warn("urllib3 ({}) or chardet ({}) doesn't match a supported "
Traceback (most recent call last):
File "screenshots.py", line 19, in <module>
driver = webdriver.Chrome(ChromeDriverManager().install(), options=options)
TypeError: __init__() got multiple values for argument 'options'
Looks like there's a problem with the way some of these libraries are called. Have you seen this error message before?
The text was updated successfully, but these errors were encountered: