爬虫 - 不弹出浏览器

文章目录


一、无可视化界面

  • 导入Options类
from time import sleep

from selenium import webdriver
from selenium.webdriver.chrome.options import Options

# 创建一个参数对象, 用来控制chrome以*面模式打开
chrome_options = Options()
chrome_options.add_argument('--headless')
chrome_options.add_argument('--disable-gpu')

bro = webdriver.Chrome(executable_path='./chromedriver.exe', options=chrome_options)
bro.get("https://www.baidu.com")

print(bro.page_source)
bro.quit()

二、如何让selenium规避被检测到的风险

# 实现规避检测
options = ChromeOptions()
options.add_experimental_option('excludeSwitches', ['enable-automation'])
上一篇:爬虫进阶(五)——selenium


下一篇:javascript – 执行IIFE的不同方法?