上一页 1 ··· 7 8 9 10 11 12 13 14 下一页
摘要: 数组: # a = (a b c d e) # echo ${a[0]} # echo ${a[*]} # echo ${a[@]} b[0] = 1 if 语句: a = 20 b =10 if [ $a -eq $b ]; then echo "=";fi for语句: for loop in 阅读全文
posted @ 2022-04-05 18:44 狒狒桑 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 文件操作: r 4 w2 x1 # ls -l # chmod 777 test.txt # ls -ld test.txt 网络命令: # netstat # netstat -lnpt 性能: # top # ps -aux grep命令: # grep -nv word file.txt ; 阅读全文
posted @ 2022-04-05 17:59 狒狒桑 阅读(82) 评论(0) 推荐(0) 编辑
摘要: 配置文件: # 字典platformVersion : 7.1platformName : AndroiddeviceName : name : 11 sex : hehe age : 13demo: - hello - yaml - yeahtest : ttttt 文件获取: import ya 阅读全文
posted @ 2022-04-05 14:38 狒狒桑 阅读(31) 评论(0) 推荐(0) 编辑
摘要: import timefrom appium import webdriverfrom appium.webdriver.common.mobileby import MobileByfrom appium.webdriver.common.touch_action import TouchActi 阅读全文
posted @ 2022-04-05 00:31 狒狒桑 阅读(151) 评论(0) 推荐(0) 编辑
摘要: import timefrom appium import webdriverfrom appium.webdriver.common.mobileby import MobileByfrom appium.webdriver.common.touch_action import TouchActi 阅读全文
posted @ 2022-04-05 00:05 狒狒桑 阅读(37) 评论(0) 推荐(0) 编辑
摘要: loc = driver.find_element(MobileBy.ANDROID_UIAUTOMATOR, 'new UiSelector().text("搜索")')print(loc.size)'''# 等待loc = (MobileBy.ANDROID_UIAUTOMATOR, 'new 阅读全文
posted @ 2022-04-04 23:30 狒狒桑 阅读(53) 评论(0) 推荐(0) 编辑
摘要: from appium import webdriver# 平台类型# 手机操作系统# 手机系统版本# 设备名称# 是否重置desired_caps={}desired_caps["platformName"]="Andriod"desired_caps["platformVersion"]="7. 阅读全文
posted @ 2022-04-04 21:32 狒狒桑 阅读(80) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-04-04 10:58 狒狒桑 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 1、安装Jenkins-allure插件 allure-jenkins-plugin,要下载.hpi格式的文件 2、Jenkins安装插件 3、在Jenkins上配置全局配置 4. 全局配置--配置jdk1.8 可配置多个jdk版本 5. Jenkins上配置 -- 执行机工具 6. Jenkins 阅读全文
posted @ 2022-04-04 09:07 狒狒桑 阅读(47) 评论(0) 推荐(0) 编辑
摘要: master/slave Jenkins部署到Linux服务器,运行在Windows本地 1、slave向master报道 Jenkins配置 -- 节点管理 -- 配置节点 -- 通过launch,安装jar包连接主机 2. 正常配置Jenkins任务 区别点:在General中设置 Restri 阅读全文
posted @ 2022-04-04 01:15 狒狒桑 阅读(104) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 下一页