- 博客(5)
- 收藏
- 关注
原创 Python+selenium验证部分文本框内容相符即断言成功
分析:只获取部分文本信息“您已登录成功!”即可断言系统登录成功登录信息是PI地址和时间,是变量,比较复杂from selenium import webdriverfrom time import sleepimport unittest“”“测试OA系统登录功能”""class TestLogin(unittest.TestCase):def setUp(self):self....
2019-04-02 19:56:41 4968
原创 Python+selenium登录断言
from selenium import webdriverfrom time import sleepimport unittestclass TestLogin(unittest.TestCase):def setUp(self):self.driver=webdriver.Chrome()self.driver.implicitly_wait(3) # 隐性等待时间为3秒se...
2019-03-25 21:35:54 4333
原创 Python+selenium注册唯一账号
1)时间戳是指格林威治时间1970年01月01日00时00分00秒(北京时间1970年01月01日08时00分00秒)起至现在的总秒数2)一个用户名只能注册一次,时间搓也是唯一的,把时间搓作为用户名、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、文件名:TestMakeName.py#导入时间模块import timeclass MakeName():def...
2019-03-25 19:31:45 730
原创 Python+unittest:执行测试用例~discover函数介绍
discover(start_dir,pattern=‘test*.py’,top_level_dir=None)找到指定目录下所有测试模块,并可递归查到子目录下的测试木块,只有匹配到的文件名才会被加载。如果启动的不是顶层目录,那么顶层目录必然单独指定。start_dir:要测试的模块名或测试用例的目录。pattent=‘test*.py’:表示用例文件名的匹配原则。此处匹配文件名一test...
2019-03-03 16:33:28 770
原创 Python+selenium:关闭弹出框右上角“X”
如上图所示:要关闭弹出框中的x按钮,1)首先需定位弹出框alert=driver.switch_to_alert()2)查看代码x按钮是个超链接,那么就使driver.find_element_by_link_text(‘退出’).click()代码如下:from selenium import webdriverfrom time import sleepdriver=webdri...
2019-02-27 19:56:14 7484
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人