上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 30 下一页
摘要: import osBASE_PATH = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))# 配置文件的信息APP_PATH = os.path.join(BASE_PATH, 'conf', 'appController.yml 阅读全文
posted @ 2018-10-06 21:59 laosun0204 阅读(162) 评论(0) 推荐(0) 编辑
摘要: from logging import handlersimport loggingfrom lib.path import SYSTEM_PATHclass Logger(object): __instance = None def __new__(cls, *args, **kwargs): i 阅读全文
posted @ 2018-10-06 21:58 laosun0204 阅读(263) 评论(0) 推荐(0) 编辑
摘要: from lib.tool import Toolfrom appium import webdriverfrom lib.logger import loggerfrom lib.path import LOGPATH, APPPICTUREPATHimport osimport timeimpo 阅读全文
posted @ 2018-10-06 21:54 laosun0204 阅读(234) 评论(0) 推荐(0) 编辑
摘要: tester:# 通用的配置 # appium专用输入法 unicodeKeyboard: True # 结束运行后重置为原来的输入法 resetKeyboard: True # 是否清除数据启动 noReset: False# app # appPackage: com.android.brows 阅读全文
posted @ 2018-10-06 21:49 laosun0204 阅读(302) 评论(0) 推荐(0) 编辑
摘要: from lib.path import APP_CASE, APP_REPORT, EMAIL_INFOimport unittestfrom lib.appController import Controllerfrom BeautifulReport import BeautifulRepor 阅读全文
posted @ 2018-10-06 21:46 laosun0204 阅读(274) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-10-06 21:41 laosun0204 阅读(293) 评论(0) 推荐(0) 编辑
摘要: appium框架的整体流程及可能遇到的问题: 1、启动服务(多线程启动服务) a、服务是否启动成功 b、杀掉appium相关服务 c、杀掉adb服务(多线程运行时adb存在问题,所以需要每次运行前都要重启adb服务)2、启动driver(多线程启动服务) a、运用队列传递生成driver b、根据配 阅读全文
posted @ 2018-08-26 20:31 laosun0204 阅读(1035) 评论(0) 推荐(0) 编辑
摘要: from lib.core.pyse import Pysefrom appium import webdriverfrom selenium.webdriver.support.wait import WebDriverWaitfrom selenium.webdriver.support imp 阅读全文
posted @ 2018-08-25 17:20 laosun0204 阅读(478) 评论(0) 推荐(0) 编辑
摘要: 第一种:postman请求成功时点击Code,自动生成的代码,url是请求地址,payload是data,点击Python Request,可以看到token和content-type 通过上图把'content-type': 'application/x-www-form-urlencoded'放 阅读全文
posted @ 2018-08-24 18:08 laosun0204 阅读(7306) 评论(0) 推荐(0) 编辑
摘要: 返回结果是[{},{},{}]这种格式的,用assertNotEqual和assertIn进行判断,前提要先str一下,cases里的用例执行顺序是从上到下获取的 接口属性有两种,一种是get型的,一种是写入型的,get型的主要是获取信息,写入型的就是对数据库进行写入,修改的接口,所有项目都包含ge 阅读全文
posted @ 2018-08-21 15:37 laosun0204 阅读(863) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 30 下一页