您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
1.实际测试过程中,常常要对比实际结果与期望结果是否一致。
2.如果实际结果与期望结果不一致则被认为bug
selenium广泛应用于B/S架构,如何通过selenium来验证测试结果的正确性呢。
#******************
# 获取验证信息,操作某页面后,确认进入的是期望结果
#******************
from selenium import webdriver
from time import sleep
driver = webdriver.Firefox()
driver.get("http://www.baidu.com")
print("===========The baidu Page===============")
First_Title = driver.title
print("The first page title is:%s" % First_Title)
print("===========The hao123 Page===============")
driver.find_element_by_xpath("//a[@name='tj_trhao123']").click()
Second_Title = driver.title
print("The Second page title is:%s" % Second_Title)
Expect_Title = "hao123_上网从这里开始"
if Second_Title == Expect_Title:
print(True)
else:
print(False)
driver.quit()
推广下我的博客专栏,目前选定了一个主题《从零学Selenium自动化测试框架》请添加链接描述,让我们从代码撸起,一步步实现Web自动化测试框架
该专题会从零带你搭建一个可用的自动化测试框架(基于python+selenium)
前提:你要掌握了python与selenium基础哦。要不你看不懂的。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。