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?
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?