hcjohn463 / JableTVDownload

下載 jable好幫手
Apache License 2.0
676 stars 149 forks source link

"chrome_options has been removed on Selenium 4.10.0, so the update is options=options." #117

Closed TsaiRongFu closed 1 year ago

TsaiRongFu commented 1 year ago

fix

dr = webdriver.Chrome(chrome_options=options)
TypeError: init() got an unexpected keyword argument 'chrome_options'

"chrome_options has been removed on Selenium 4.10.0, so the update is options=options."

new code

dr = webdriver.Chrome(options=options)
TypeError: init() got an unexpected keyword argument 'chrome_options'