python 3.7.2 (安装 selenium 插件) 、 chrome谷歌浏览器76.0.3809.132版本(通过浏览器:chrome://version/ 查看版本)
chromedriver.exe 插件(http://chromedriver.storage.googleapis.com/index.html),将它放入E盘(例如)
from selenium import webdriver
if __name__ == '__main__':
chrome_driver='E:\chromedriver.exe'
driver = webdriver.Chrome(executable_path=chrome_driver)
driver.get("http://www.baidu.com")
pass
执行结果:弹出chrome谷歌浏览器,进入百度页面
兼容其他浏览器:
https://www.selenium.dev/documentation/zh-cn/getting_started_with_webdriver/third_party_drivers_and_plugins/