Selenium学习

Posted 肖美俊

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Selenium学习相关的知识,希望对你有一定的参考价值。

1、Selenium安装

pip install selenium

 

2、测试selenium

python selenium

from selenium import webdriver

browser = webdriver.Chrome()

browser.get(\'http://www.baidu.com/\')

报错:

WebDriverException: Message: \'chromedriver\' executable needs to be in PATH. Please see https://sites.google.com/a/chromium.org/chromedriver/home

解决:安装chromedrive

3、chromedriver下载

chromedriver 驱动下载链接:https://chromedriver.storage.googleapis.com/index.html

chromedriver与chrome的对应关系表

chromedriver版本支持的Chrome版本
v2.32 v59-61
v2.31 v58-60
v2.30 v58-60
v2.29 v56-58

4、chromedriver

C:\\Program Files (x86)\\Google\\Chrome\\Application

环境变量

pach:添加C:\\Program Files (x86)\\Google\\Chrome\\Application

更改环境变量需要重启电脑

以上是关于Selenium学习的主要内容,如果未能解决你的问题,请参考以下文章

Selenium学习Selenium总是崩溃的解决办法

摘:Selenium api学习

[Selenium自动化测试学习]Python+Selenium环境搭建

Python Selenium入门学习材料整理

Python学习--Selenium模块

selenium学习历程