摘要: 1、打开git bash,输入如下命令: git config --global user.name UserName git config --global user.email YourEmail git config --global core.editor vim git config -- 阅读全文
posted @ 2020-07-17 17:52 未来可期_Durant 阅读(66) 评论(0) 推荐(0) 编辑
摘要: 一、JDK1.8 二、node.js 1、去官网下载node.js的二进制文件:https://nodejs.org/zh-cn/download/ 2、配置node和npm a、打开NodeJs文件目录,如下图: b、在NodeJs文件目录下建立”node_global“及”node_cache“ 阅读全文
posted @ 2020-07-17 16:34 未来可期_Durant 阅读(180) 评论(0) 推荐(1) 编辑
摘要: 问题1: Trying to use a chromedriver binary at the path ~~~~~~~ but it doesn't exist! 解决办法: 查看chromedriverExecutable参数的值是否正确配置,有空格或者是否是全路径 问题2: A new ses 阅读全文
posted @ 2020-07-17 15:28 未来可期_Durant 阅读(249) 评论(2) 推荐(1) 编辑
摘要: 一、拉取镜像 docker pull openstf/stf:latest // 拉取stf镜像 docker pull sorccu/adb:latest // 拉取adb镜像 docker pull rethinkdb:latest // 拉取rethinkdb数据库镜像 docker pull 阅读全文
posted @ 2020-07-17 15:24 未来可期_Durant 阅读(452) 评论(0) 推荐(1) 编辑
摘要: 1、使用USB连接电脑,远程给设备打开一个调试端口 adb -s 设备名称 tcpip 5555 2、查看远程设备的IP地址 adb -s 设备名称 shell ifconfig 3、远程连接 adb connect 10.20.12.81:5555 4、拔掉USB线,在openstf验证是否能远程 阅读全文
posted @ 2020-07-17 15:17 未来可期_Durant 阅读(710) 评论(0) 推荐(1) 编辑
摘要: 一、背景 在使用appium做安卓app自动化的时候,有两个必要的启动参数appPackage和appActivity是需要获取的 二、获取appPackage 1、Windows adb shell pm list packages | findstr "yourAppName" 2、Mac or 阅读全文
posted @ 2020-07-17 15:09 未来可期_Durant 阅读(210) 评论(0) 推荐(1) 编辑
摘要: Mac 第一种:命令行 brew install allure 第二种,简单粗暴的方法(成功率高) Linux sudo apt-add-repository ppa:qameta/allure sudo apt-get update sudo apt-get install allure Wind 阅读全文
posted @ 2020-07-17 14:49 未来可期_Durant 阅读(349) 评论(0) 推荐(2) 编辑
摘要: 一、本地搭建并配置好git,并且把app自动化工程上传到公司的GitLab仓库 二、本地搭建好appium服务端 三、本地搭建好jenkins 四、本地安装并配置好Allure 五、使用jenkins安装相关插件 1、GitHub Branch Source 2、Maven Integration 阅读全文
posted @ 2020-07-17 14:33 未来可期_Durant 阅读(282) 评论(0) 推荐(1) 编辑
摘要: 一、背景 有时候在安装docker后发现其数据存储的目录空间不够用,所以能不能修改其默认路径呢,答案是肯定的 二、步骤 1、使用root用户对daemon.json文件进行配置 { "registry-mirrors": [ "https://alzgoonw.mirror.aliyuncs.com 阅读全文
posted @ 2020-07-17 14:11 未来可期_Durant 阅读(120) 评论(0) 推荐(1) 编辑