web自动化环境准备

一、环境的准备

1.python3.7
2.PyCharm(本人使用社区版)
3.selenium(pip install selenium 注:自动安装最新版本)
4.chrome(在帮助中点击关于Google chrome 可查看版本或者直接打开地址可查看:chrome://version/ )
5.Chromedriver(需要与chrome版本对应,下载地址:http://npm.taobao.org/mirrors/chromedriver/),该驱动需要放在python的安装目录
注:python以及Pycharm安装教程可参考这两篇文章:https://blog.csdn.net/weixin_43044440/article/details/105096603
https://blog.csdn.net/weixin_43044440/article/details/109067412

二、测试环境是否成功

1.打开PyCharm创建项目
2.在项目中创建xxx.py文件
3.在该环境中导入selenium(此处已导入成功,其他库也是使用同样的方法进行导入
在这里插入图片描述

三.编写代码执行脚本

以访问百度为例进行说明:

#(从selenium中调取webdriver)
from selenium import webdriver
#这里可以把chrome当做一个对象,把weddriver.Chrome()给到chrome,这个时候chrome就有了使命了
chrome=webdriver.Chrome()
#该段代码为用谷歌浏览器打开 https:www.baidu.com/这个网站
chrome.get("https:www.baidu.com/")
#运行该代码即可打开该网站

猜你喜欢

转载自blog.csdn.net/weixin_43044440/article/details/114884079