Selenium(1)安装及使用chrome测试

1.安装
通过pip安装
如果安装pip之后,在dos命令框中输入pip,提示:unknown or unsupported command install
解决办法:
1、where pip找出 所有 pip的路径;

2、找到,并进入Python下的那个pip路劲;

3、再通过pip install selenium 安装 即可;
Selenium(1)安装及使用chrome测试_第1张图片

2.安装chrome和对应的驱动chromedirver版本
安装Chromedriver

所有版本chormedriver下载http://chromedriver.storage.googleapis.com/index.html
所有版本chorme下载
https://www.slimjet.com/chrome/google-chrome-old-version.php)
下载对应版本的chromedriver驱动文件,具体版本请对照文章底部的对应关系表:

如本机的chrome浏览器版本为:版本 61.0.3163.100(正式版本) (64 位),对应的chromedriver版本为2.33.

3.下载后把文件解压,然后放到本机chrome浏览器文件路径里,如:

C:\Program Files (x86)\Google\Chrome\Application
Selenium(1)安装及使用chrome测试_第2张图片

4.操作完后,就可以使用以下代码直接调起浏览器了:

driver = new ChromeDriver();

版本不一致时会报错
正确的版本放到python根目录下和chrome根目录下都放。

途中出现以下情况,找到解决原因:
Selenium(1)安装及使用chrome测试_第3张图片
无法引用selenium,出现红线
原因:脚本文件路径的python解释器环境与selenium安装路径的解释器不同
后面重新新建项目配置对的环境
Selenium(1)安装及使用chrome测试_第4张图片


一些可以参考的博客

https://blog.csdn.net/github_37216944/article/details/79053781
https://www.cnblogs.com/JHblogs/p/7699951.html

你可能感兴趣的:(Selenium)