python 配置环境变量 以及UI自动化测试成功运行

参考网址  https://www.jianshu.com/p/990cb9441420

 

安装 pytcharm    官网上自行下载安装,这里就不做解释了

 

python 官网安装python3.95 python安装的时候自带pip

cmd命令行查询是否是否安装python 

 

 

 

cmd命令行查询是否是否安装pip

 

 

 

环境变量设置

 

 

 

双击Path环境变量,点击新建。增加一个python安装路径(这里我是D:\\Python39)

以及 pip的安装路径(这里我是D:\\Python39\Scripts)

 

 

事先准备了浏览器驱动  放在python安装文件夹目录内 

 

这里我的谷歌浏览器版本是 93 所以我下载的驱动也是93,对应下载地址如下

A.浏览器驱动下载路径  

不同浏览器驱动存放路径不同,个别网站国内访问不了,现总结如下:  

Chrome:  

http://chromedriver.storage.googleapis.com/index.html  

Firefoxdriver:  

https://github.com/mozilla/geckodriver/releases/tag/v0.26.0  

IEdriver:  

http://selenium-release.storage.googleapis.com/index.html  

更多浏览器驱动信息,

请参考官网:

https://selenium.dev/thirdparty/  



 

 

打开pycharms,执行一段UI自动化测试代码

from selenium import webdriver
import time


#调用chrome驱动文件
driver = webdriver.Chrome()
#打开百度首页
sg = "https://www.sogou.com/"
bd = "http://www.baidu.com"
driver.get(bd)
dr = driver.find_element("xpath",'//*[@id="kw"]').send_keys("王者")
time.sleep(5)
driver.find_element("id","su").click()
time.sleep(2)
hf = driver.current_url
ji = driver.title

print(hf)

 

运行成功,如下图所示

 

 

posted @ 2021-09-16 11:07  赏金猎人小熊  阅读(126)  评论(0编辑  收藏  举报