#IU

Appium简介

Appiumisanopensourcetestautomationframeworkforusewithnative,hybridandmobilewebapps.ItdrivesiOS,Android,andWindowsappsusingtheWebDriverprotocol.Appium是一个开源测试自动化框...
代码星球 ·2020-06-13

Appium之编写H5应用测试脚本(切换到Webview)

App使用H5编写,默认方式找不到元素。启动后获取所有上下文,找到webivew_xxxx的,然后进行切换。源码:1packageMyAppium;23importio.appium.java_client.android.AndroidDriver;4importorg.openqa.selenium.By;5imp...

Appium之开发计算器自动化测试脚本Demo

 1、依赖包<!--https://mvnrepository.com/artifact/io.appium/java-client--><dependency><groupId>io.appium</groupId><artifactId>java...

Appium之开发环境搭建

1、下载Appium去官方网站下载http://appium.io/#;本次以appium-desktop-setup-1.8.0.exe文件为例,使用桌面版就不再需要下载server版本;下载后安装,并点击启动,默认配置为“http://127.0.0.1:4723/wd/hub”。2、下载安...
代码星球 ·2020-06-13

selenium之批量执行测试用例生成HTML结果文件

使用HTMLTestRunner运行测试套件,自动生成html测试报告:1importunittest,HTMLTestRunner,sendmail_html2importtime,os34case_dir='D:\pywork\pyworkspace\yzwx_selenium\batch_case\test_ca...

selenium之批量执行测试用例

把写好的测试用例放在指定目录下,使用discover函数扫描该目录,并根据关键字自动筛选需要执行的用例。本例使用Python3.6版本。1#遍历指定目录,批量执行测试用例2importunittest34case_dir='D:\test_case'567defsuites_run():8'''运行测试套件,批量执行测...
代码星球 ·2020-06-13

selenium之使用unittest测试框架

1#测试角色权限管理页面功能2fromseleniumimportwebdriver3fromlogin_pageimportLoginPage4importrandom,time,unittest567classTestRole(unittest.TestCase):8defsetUp(self):9self.log...

selenium之截图

selenium支持对当前页面保存截图,使用方法:driver.get_screenshot_as_file(file_path) 代码举例:......defget_screenshot(driver,path=''):'''保存页面截图'''n=0ifpath:passelse:path="D:\test...
代码星球 ·2020-06-13

selenium之调用Javascript

selenium调用Javascript使用方法:driver.execute_script(js)使用JS获取元素文本值,代码片段如下:......js="return$('#searchKey').val()"val=driver.execute_script(js)#调用JavaScript获取输入框的值prin...
代码星球 ·2020-06-13

selenium之下载

#测试下载功能,保存文件到指定的目录#不同的浏览器配置是不同的,本例使用chrome浏览器#author:gongxr#date:2017-07-25importtimefromseleniumimportwebdriverfromlogin_pageimportLoginPage#实例化一个配置对象options=w...
代码星球 ·2020-06-13

selenium之测试卫星资料页面操作(元素遍历)

 #测试气象卫星资料页面功能#author:gongxr#date:2017-07-24importrandom,timefromseleniumimportwebdriverfromlogin_pageimportLoginPagelogin_obj=LoginPage()driver=webdriver....

selenium之测试角色管理页面举例

 #测试角色权限管理页面功能#author:xr#date:2017-07-20fromseleniumimportwebdriverfromlogin_pageimportLoginPageimportrandom,timelogin_obj=LoginPage()driver=webdriver.Chro...

selenium之封装登陆操作

 #selenium封装登录操作举例importos,time#fromseleniumimportwebdriverclassLoginPage():'''登录模块'''def__init__(self,path=''):'''初始化加载驱动'''ifpath:chrome_path=pathelse:ch...
代码星球 ·2020-06-13

selenium之安装和登陆操作举例

安装selenium:python-mpipinstallselenium-3.4.3-py2.py3-none-any.whl 下载对应浏览器版本的驱动,且在环境变量PATH中指定驱动程序的存放路径,否则需要指定驱动文件路径。代码举例:#selenium登录操作举例importos,timefromsele...

hdu 1028 Sample Ignatius and the Princess III (母函数)

TimeLimit:2000/1000MS(Java/Others)    MemoryLimit:65536/32768K(Java/Others)TotalSubmission(s):25929    AcceptedSubmissio...
首页上一页...2728293031...下一页尾页