报错
TypeError: init() got an unexpected keyword argument ‘options’
检查是否输入错误,属性名是否正确
driver = webdriver.Chrome(executable_path="./chromedriver.exe",options=chrome_options)
更改为
driver = webdriver.Chrome(executable_path="./chromedriver.exe",chrome_options=chrome_options)