selenium环境搭建----windows篇

  • 环境配置

python 3.7.2 (安装 selenium 插件) 、  chrome谷歌浏览器76.0.3809.132版本(通过浏览器:chrome://version/ 查看版本)

selenium环境搭建----windows篇_第1张图片

chromedriver.exe 插件(http://chromedriver.storage.googleapis.com/index.html),将它放入E盘(例如)

selenium环境搭建----windows篇_第2张图片

  • 测试代码执行:
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谷歌浏览器,进入百度页面

selenium环境搭建----windows篇_第3张图片

兼容其他浏览器:

https://www.selenium.dev/documentation/zh-cn/getting_started_with_webdriver/third_party_drivers_and_plugins/

selenium环境搭建----windows篇_第4张图片

你可能感兴趣的:(Selenium,+,Python)