selenium 360启动

from selenium.webdriver.chrome.options import Options
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
import time

chrome_options = webdriver.ChromeOptions()#驱动要看360的版本去下载相应的才可以驱动360浏览器 一般比谷歌的最新版都要低不少
chrome_options.binary_location = r"D:\Users\360se6\Application\360se.exe" #这里是360安全浏览器的路径
chrome_options.add_argument(r’–lang=zh-CN’) # 这里添加一些启动的参数
browser = webdriver.Chrome(options=chrome_options)
browser.get(r’http://www.baidu.com’)

你可能感兴趣的:(爬虫)