欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python+selenium自动化测试框架

程序员文章站 2022-07-12 15:01:13
...

1.环境安装

(1) selenium :pip install selenium

(2) chrome webdriver下载地址: http://chromedriver.storage.googleapis.com/index.html

(3) Python项目目录结构

将chromedriver.exe拷贝到drivers包下

python+selenium自动化测试框架

 

2.示例

测试需求:访问百度主页,搜索某个关键词,并验证搜索结果页面的标题是“被搜索的关键词”+”_百度搜索“,例如输入python,搜索结果页面的标题就是” python_百度搜索”

1.元素定位

(1)Chrome浏览器F12调出调试界面

python+selenium自动化测试框架

(2)定位元素

python+selenium自动化测试框架

python+selenium自动化测试框架

python+selenium自动化测试框架

 

 

3.代码实现

 

from selenium import webdriver
from selenium.webdriver.common.keys import Keys
import time

browser = webdriver.Chrome()  # 打开chrome浏览器
browser.get('http://www.baidu.com/')  # 访问百度首页
browser.find_element_by_id('kw').send_keys('python')  # 搜索框输入了字符串“python”
time.sleep(3)
browser.find_element_by_id('su').send_keys(Keys.ENTER)  # 触发“百度一下”命令
time.sleep(3)
title = browser.title
print(title)

if title == "python_百度搜索":
    print("网页标题是:", title)
else:
    print(0)

运行结果:

python+selenium自动化测试框架

python+selenium自动化测试框架

相关标签: Python自动化测试