option = webdriver.ChromeOptions() option.add_argument("start-maximized") option.add_argument("--disable-blink-features=AutomationControlled") option.add_experimental_option("excludeSwitches", ["enable-automation"]) option.add_experimental_option("useAutomationExtension", False) browser = webdriver.Chrome(options=option) browser.execute_cdp_cmd("Page.addScriptToEvaluateOnNewDocument",{ 'source':'''Object.defineProperty(navigator, 'Cabdriver', { get: () =>false''' }) city = [ '焦作', ] conn = pymysql.connect(host='localhost', user='root', db='weatherman', passwd='12345678', charset='utf8') cursor = conn.cursor()
时间: 2024-02-29 20:54:13 浏览: 280
这段代码是使用 Python 的 Selenium 库通过 Chrome 浏览器模拟用户操作,访问一个网站并获取数据。具体来说,代码中的 `webdriver.ChromeOptions()` 用于配置 Chrome 浏览器的参数,`webdriver.Chrome(options=option)` 创建一个 Chrome 浏览器对象,`browser.execute_cdp_cmd()` 用于向 Chrome DevTools 协议发送命令,这里是为了修改浏览器中 navigator 对象的 Cabdriver 属性,以避免网站检测到使用自动化工具。然后代码连接了一个 MySQL 数据库,用于存储获取到的数据。最后还缺少获取数据的代码,可能是后面的代码被省略了。
相关问题
undetected-chromedriver使用详解
undetected-chromedriver是一个Python库,用于在使用Selenium时避免被检测到。这个库可以让你的Selenium自动化脚本更加稳定和可靠。
下面是使用undetected-chromedriver的详细步骤:
1. 安装undetected-chromedriver库:
```
pip install undetected-chromedriver
```
2. 导入库和Selenium:
```python
from undetected_chromedriver.v2 import Chrome, ChromeOptions
from selenium import webdriver
```
3. 创建ChromeOptions对象,并设置参数,比如禁止弹出窗口、禁止加载图片等:
```python
options = ChromeOptions()
options.add_argument("--disable-notifications")
options.add_argument("--disable-infobars")
options.add_argument("--mute-audio")
options.add_argument("--disable-popup-blocking")
options.add_argument("--disable-gpu")
options.add_argument("--disable-extensions")
options.add_argument("--disable-web-security")
options.add_argument("--disable-xss-auditor")
options.add_argument("--disable-webgl")
options.add_argument("--disable-plugins-discovery")
options.add_argument("--disable-blink-features=AutomationControlled")
options.add_argument("--disable-features=AutomationControlled")
options.add_argument("--disable-features=VizDisplayCompositor")
options.add_argument("--mute-audio")
options.add_argument("--no-sandbox")
options.add_argument("--disable-setuid-sandbox")
options.add_argument("--disable-dev-shm-usage")
options.add_argument("--disable-accelerated-2d-canvas")
options.add_argument("--disable-accelerated-jpeg-decoding")
options.add_argument("--disable-accelerated-mjpeg-decode")
options.add_argument("--disable-accelerated-video-decode")
options.add_argument("--disable-accelerated-video-encode")
options.add_argument("--disable-client-side-phishing-detection")
options.add_argument("--disable-default-apps")
options.add_argument("--disable-extensions-file-access-check")
options.add_argument("--disable-features=site-per-process")
options.add_argument("--disable-hang-monitor")
options.add_argument("--disable-ipc-flooding-protection")
options.add_argument("--disable-print-preview")
options.add_argument("--disable-prompt-on-repost")
options.add_argument("--disable-renderer-backgrounding")
options.add_argument("--disable-sync")
options.add_argument("--disable-translate")
options.add_argument("--disable-voice-input")
options.add_argument("--disable-wake-on-wifi")
options.add_argument("--enable-automation")
options.add_argument("--start-maximized")
options.add_argument("--headless")
options.add_argument("--no-sandbox")
options.add_argument("--ignore-certificate-errors")
options.add_argument("--ignore-ssl-errors")
```
4. 创建Chrome对象,并设置参数:
```python
driver = Chrome(options=options)
```
5. 在代码中使用driver对象进行操作:
```python
driver.get("https://www.google.com")
print(driver.title)
```
以上就是使用undetected-chromedriver的详细步骤。当然,具体的参数设置还需要根据实际情况进行调整,不同的网站可能需要不同的配置。
阅读全文