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 10:54:07 浏览: 153
这段代码看起来是使用Python的selenium库来控制Chrome浏览器,并且设置了一些选项,如启动浏览器时最大化窗口、禁用自动化控制等。接下来使用了Chrome DevTools Protocol来向浏览器注入一段JavaScript脚本,以修改浏览器的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的详细步骤。当然,具体的参数设置还需要根据实际情况进行调整,不同的网站可能需要不同的配置。
阅读全文