Closed TsaiRongFu closed 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'
fix
"chrome_options has been removed on Selenium 4.10.0, so the update is options=options."
new code