上一页 1 ··· 3 4 5 6 7 8 下一页
摘要: from appium import webdriverfrom time import sleepimport os#获取apk的绝对路径desired_cups = {}#设备平台desired_cups['platformName'] = 'Android'#设备系统版本desired_cup 阅读全文
posted @ 2018-10-12 10:54 菜菜_包包 阅读(2755) 评论(0) 推荐(0) 编辑
摘要: #coding:utf8from selenium import webdriverfrom time import sleepclass urlpage(object): #创建浏览器对象 def __init__(self,brower): driver = None self.brower = 阅读全文
posted @ 2018-09-30 15:22 菜菜_包包 阅读(387) 评论(0) 推荐(0) 编辑
摘要: Bpafter xxx: 中断 URL 包含指定字符的全部 session 响应 Bps xxx: 中断 HTTP 响应状态为指定字符的全部 session 响应 Bpv xxx: 中断指定请求方式的全部 session 响应 Bpm xxx: 中断指定请求方式的全部 session 响应 、、同于 阅读全文
posted @ 2018-09-28 11:28 菜菜_包包 阅读(146) 评论(0) 推荐(0) 编辑
摘要: import reclass Retest: def __init__(self,string,path): self.string = string self.path = path def retest(self): res = re.search(self.string,self.path,f 阅读全文
posted @ 2018-09-27 17:30 菜菜_包包 阅读(953) 评论(0) 推荐(0) 编辑
摘要: BaseException 所有异常的基类 SystemExit 解释器请求退出 KeyboardInterrupt 用户中断执行(通常是输入^C) Exception 常规错误的基类 StopIteration 迭代器没有更多的值 GeneratorExit 生成器(generator)发生异常来 阅读全文
posted @ 2018-09-26 15:28 菜菜_包包 阅读(1078) 评论(0) 推荐(0) 编辑
摘要: http://www.runoob.com/python/python-operators.html 阅读全文
posted @ 2018-09-21 10:17 菜菜_包包 阅读(177) 评论(0) 推荐(0) 编辑
摘要: Python程序语言指定任何非0和非空(null)值为true,0 或者 null为false,所以Python中的 1 代表 True,0代表False 阅读全文
posted @ 2018-09-21 10:16 菜菜_包包 阅读(5187) 评论(0) 推荐(0) 编辑
摘要: 1.1、实例引入 # 引入Requests库 import requests # 发起GET请求 response = requests.get('https://www.baidu.com/') # 查看响应类型 requests.models.Response print(type(respon 阅读全文
posted @ 2018-09-18 09:34 菜菜_包包 阅读(313) 评论(0) 推荐(0) 编辑
摘要: 测试最少分四阶。初级别就是功能、中级会一些自动化。懂一点性能高级:自动化要精通吧、性能初级、安全等都要了解;资深的熟悉各种测试技术及工具。服务测试工作。能合理运用。对资源把握精准,人员分配、资源分配、风险控制、质量把控。等这些。能改进测试流程、根据不同业务指导开发不同的工具,提高整体工作效率、质量。 阅读全文
posted @ 2018-08-30 14:57 菜菜_包包 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 恢复内容开始 1、首先我们抓取一个百度的请求,由于百度请求是https协议,需要手动添加证书(这个不写了,大佬们自己手动找下资料) 2、fiddler抓取的百度请求,其他的无关信息删除,便于查看 3、 4、选择需要返回的数据 5、然后选择我们手动创建的数据添加到文本中(这里只是一个测试,手动添加的数 阅读全文
posted @ 2018-08-29 10:26 菜菜_包包 阅读(690) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 下一页