上一页 1 2 3 4 5 6 7 ··· 11 下一页
摘要: desired_caps = {} desired_caps['platformName'] = 'Android' desired_caps['platformVersion'] = '4.3' desired_caps['deviceName'] = '... 阅读全文
posted @ 2015-05-08 15:32 Mr.Dantes 阅读(1346) 评论(0) 推荐(0) 编辑
摘要: 在运行app的过程,如果我想一个个模块单独的运行并产生测试报告。那么该怎么做呢? 我可以把公共的部分,如登录功能放在setup()里面,那么每次运行你定义的一个个函数,都会调用这个setup()中的数据。 还是贴一下代码的思路 #coding=utf-8import osimport un... 阅读全文
posted @ 2015-05-08 14:11 Mr.Dantes 阅读(757) 评论(0) 推荐(1) 编辑
摘要: http://www.tuicool.com/articles/YvAJ7vhttp://testerhome.com/topics/167 阅读全文
posted @ 2015-05-06 16:21 Mr.Dantes 阅读(589) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/zhubaitian/article/details/39754041 阅读全文
posted @ 2015-05-06 16:20 Mr.Dantes 阅读(423) 评论(0) 推荐(0) 编辑
摘要: #你也想跟webdriver一样搞出逼格高的测试报告么,appium一样也可以~不说废话了,请看,仔细学习~#coding=utf-8import osimport unittest,sys,time,re,datetime,HTMLTestRunnerfrom appium import webd... 阅读全文
posted @ 2015-05-06 15:09 Mr.Dantes 阅读(2638) 评论(1) 推荐(1) 编辑
摘要: 在下午搞appium的过程中,我发现有关乱码的报错如何解决这个问题:加上三行~import sysreload(sys)sys.setdefaultencoding('utf-8')#coding=utf-8import osimport unittest,sys,time,re,datetime,... 阅读全文
posted @ 2015-05-06 15:03 Mr.Dantes 阅读(1174) 评论(0) 推荐(0) 编辑
摘要: http://jingyan.baidu.com/article/d621e8da0dee022865913fce.html1.查看adb端口adb nodaemon server2.netstat -ano|findstr "5037"(第一步查看的端口号)3.CTRL+ALT+DEL唤出任务管理... 阅读全文
posted @ 2015-05-06 14:36 Mr.Dantes 阅读(322) 评论(0) 推荐(0) 编辑
摘要: #废话不多说了,直接上代码~import osimport unittestfrom appium import webdriverfrom time import sleep# Returns abs path relative to this file and not cwdPATH = lam... 阅读全文
posted @ 2015-05-06 14:01 Mr.Dantes 阅读(3961) 评论(0) 推荐(0) 编辑
摘要: 原文转自http://blog.sina.com.cn/s/blog_68f262210102v538.html一,Appium_Python_Client的安装推荐使用pip安装pip install Appium-Python-Client当然了也可以在Pipy上下载源码安装tar -xvf A... 阅读全文
posted @ 2015-05-06 13:27 Mr.Dantes 阅读(6392) 评论(0) 推荐(0) 编辑
摘要: 有关appium的基础建议去看乙醇的blog:http://www.cnblogs.com/nbkhic/tag/appium/或者appium官方文档:http://saucelabs.com/appium1.安装好AppiumForWindows-1.3.4.1这是GUI端的appium,com... 阅读全文
posted @ 2015-05-05 17:06 Mr.Dantes 阅读(2968) 评论(0) 推荐(1) 编辑
上一页 1 2 3 4 5 6 7 ··· 11 下一页