当前位置:首页 > 编程 > 正文

selenium模板简洁版

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


chrome_options = Options()

chrome_options.add_argument("--disable-blink-features=AutomationControlled") # 防止识别
driver = Chrome(options=chrome_options)
driver.get('https://bot.sannysoft.com/')
driver.close()


发表评论