python爬虫 设置浏览器无头(无界面)模式
from selenium import webdriver #创建chrome浏览器的功能对象 options = webdriver.ChromeOptions() #添加无头参数 options.add_argument('--headless') browser = webdriver.Chrome(options=options)