option.add_experimental_option('excludeSwitches', ['enable-automation']) NameError: name 'option' is not defined
时间: 2023-08-09 10:04:18 浏览: 234
GXRS2009_1.3.21_experimental-twm_2022-04-09.exe
这个错误是因为在执行这段代码之前没有定义`option`变量。要解决这个问题,你需要先定义`option`变量,例如:
```
from selenium.webdriver.chrome.options import Options
options = Options()
options.add_experimental_option('excludeSwitches', ['enable-automation'])
```
这样就可以使用`options`变量来执行后续的操作了。
阅读全文