我自己的环境:
python3.6
selenium
chrome66(64位)
chromedriver.exe2.38
附下载地址:http://chromedriver.storage.googleapis.com/index.html

添加如下代码:
#这个是chromedriver.exe的绝对路径
chromedriver = "C:\Program Files (x86)\Google\Chrome\Application\chromedriver.exe"
#这个我猜测是设置环境变量
os.environ["webdriver.chrome.driver"] = chromedriver
#这2个不知道是什么设置
options = webdriver.ChromeOptions()
options.add_experimental_option("excludeSwitches",["ignore-certificate-errors"])

#创建浏览器对象,
driver = webdriver.Chrome(chromedriver,chrome_options=options)