摘要: 通常需要到控制面板--程序和功能--启用或关闭windows功能中启用.net framework 3.5 但是经常出现失败的情况 在失败的情况下,可以用如下命令(以管理员身份打开cmd): dism.exe /online /enable-feature /featurename:netfx3 / 阅读全文
posted @ 2020-03-10 10:44 coffee~ 阅读(4256) 评论(0) 推荐(0) 编辑
摘要: 1. swipe方法语法 2. 手机坐标: 手机从左上角开始为0,横着的是x轴,竖着的是y轴 3. 获取屏幕的size size = driver.get_window_size() print (size) # {'width': 1080, 'height': 1920} ,返回字典类型,可使用 阅读全文
posted @ 2019-10-12 18:04 coffee~ 阅读(724) 评论(0) 推荐(0) 编辑
摘要: 应用中一般是native app和webview(如H5)混在一起,appium实现在webview中查找元素, 切换context到webview, 然后用xpath查找即可 #查看所有的context contexts = driver.contexts #一般结果是 ['NATIVE_APP' 阅读全文
posted @ 2019-10-12 17:45 coffee~ 阅读(631) 评论(2) 推荐(0) 编辑
摘要: appium服务chromedriver驱动文件的位置: appium服务程序的安装目录 \resources\app\node_modules\appium\node_modules\appium-chromedriver\chromedriver\win 遇到替换driver后还继续报错的情况, 阅读全文
posted @ 2019-10-12 16:53 coffee~ 阅读(808) 评论(0) 推荐(0) 编辑
摘要: appium中可以通过设置desired caps启动应用。 要实现应用内跳转,可以使用deep links或scheme url. deep links或scheme url(遵循scheme协议) 的形式: [协议名(可以自定义)]://[域名][页面]?[参数(多个参数用&分隔)] 如:myo 阅读全文
posted @ 2019-10-11 11:08 coffee~ 阅读(1473) 评论(0) 推荐(0) 编辑
摘要: 前提是配置好了adb环境变量(安卓),安装了python 1. 安装appium server 下载地址 : http://appium.io/ 2. 安装appium client和selenium 在cmd中输入 pip install selenium pip install Appium-P 阅读全文
posted @ 2019-09-27 20:03 coffee~ 阅读(3171) 评论(0) 推荐(0) 编辑
摘要: 1. 下载Kotlin compiler 下载地址: https://github.com/JetBrains/kotlin/releases/tag/v1.3.21, 进入网页,找到kotlin compiler, 点击下载,解压 并把kotlin.bat所在目录(Kotlin compiler\ 阅读全文
posted @ 2019-04-02 18:38 coffee~ 阅读(2416) 评论(0) 推荐(0) 编辑
摘要: from collections import Counter a = [1, 1, 7, 3, 6, 2, 5, 4, 4, 3, 9, 4, 4, 1] #统计列表中重复次数最多的前N个元素N = 3 print(Counter(a).most_common(N)) #输出是[(4, 4), ( 阅读全文
posted @ 2019-03-04 10:22 coffee~ 阅读(4764) 评论(0) 推荐(0) 编辑
摘要: 参考 https://www.cnblogs.com/zpf1092841490/p/10426095.html 不同的是新的build system命名为lua 5.3, 用户配置文件为:(注意D:/lua/lua5.3.5-windows 64-bit/lua.exe为lua所在路径,用反斜杠) 阅读全文
posted @ 2019-02-25 20:43 coffee~ 阅读(520) 评论(0) 推荐(0) 编辑
摘要: 准备: 下载lua官方的tar.gz文件( https://www.lua.org/download.html ),解压得到src文件夹 注意: 一定要用Lua官方的release版本,不要用官方的work版本,不然可能生成失败 在桌面上新建4个空文件夹lua、 luac、 luadll 、 lua 阅读全文
posted @ 2019-02-25 20:08 coffee~ 阅读(1638) 评论(0) 推荐(0) 编辑