摘要:
// // baseclass.hpp // agent // // Created by liujc on 17/7/12. // Copyright © 2017年 liujc. All rights reserved. // #ifndef baseclass_hpp #define baseclass_hpp #ifdef __GNUC__ #include #endif ... 阅读全文
摘要:
package com.automation.testlibrary; import android.os.AsyncTask; import java.lang.reflect.Method; public class MethodRunTask extends AsyncTask { String packageName; String className; Str... 阅读全文
摘要:
// TestLoadder.m // WGTestFramework // // Created by liujc on 2017/11/27. // Copyright © 2017年 liujc. All rights reserved. // #import "TestLoadder.h" #import "TestDataLoader.h" #import "GlobalVa... 阅读全文
摘要:
import jenkins class mbuild: def __init__(self, url): self.__url=url self.__server=jenkins.Jenkins(self.__url, 15) def last_build_version(self, projec 阅读全文
摘要:
sudo pip install python-jenkins --upgrade --ignore-installed six 阅读全文
摘要:
依赖:ios-deploy 安装:brew install node npm install -g --unsafe-perm=true ios-deploy 项目代码片段(运行测试build): 阅读全文
摘要:
import os, time, pprintDEBUG=Trueclass ADB: def __init__(self, deviceId): self.__deviceId=deviceId self.__adb_header='adb -s ' + self.__deviceId + ' ' 阅读全文