//测试是否安装成功的代码from selenium import webdriver#引入驱动器
from selenium.webdriver.chrome.options import Options
options = Options()
#chrome.exe的存放位置,不设置可能会报错
options.binary_location = "C:\Program Files\Google\Chrome\Application\chrome.exe"
#设置chromedriver.exe的位置
driver = webdriver.Chrome(chrome_options=options, executable_path="D:\python\chromedriver.exe", )
#自动弹出百度页面
driver.get("http://www.baidu.com")