使用 Selenium 修改 User-Agent 并删除 chromedriver 字样可以这样做:
使用 Selenium 的 webdriver 打开 Chrome 浏览器。
使用 webdriver.ChromeOptions() 创建 ChromeOptions 对象。
使用 add_argument() 方法向 ChromeOptions 对象中添加 '--user-agent' 参数。
将 ChromeOptions 对象传递给 webdriver.Chrome() 方法。
删除 chromedriver 字样,可以使用 add_argument() 方法添加 '--user-agent' 参数来修改 User-Agent。
例如:
```python from selenium import webdriver
options = webdriver.ChromeOptions() options.add_argument('--user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36') options.add_argument('--disable-extensions') options.add_argument('--disable-dev-shm-usage') options.add_argument('--remote-debuggi