上一页 1 ··· 12 13 14 15 16
摘要: from appium import webdriver 报错 看看你的文件是不是就叫appium 阅读全文
posted @ 2018-03-03 10:15 Gaoyongxian666 阅读(1443) 评论(0) 推荐(0) 编辑
摘要: 当我们想要用钛备份备份一个软件且保留登陆状态的时候,有些app千万别退出登陆,可能会向服务器发消息,从而让我们恢复不了账号 更好的操作是卸载app,之后一起恢复。 阅读全文
posted @ 2018-03-03 01:03 Gaoyongxian666 阅读(368) 评论(0) 推荐(0) 编辑
摘要: 1.adb shell命令 adb shell cat /system/build.prop 查看设备信息 cat /system/build.prop | grep "product 查看手机型号,名称等 cat /proc/cpuinfo 查看手机cpu架构 cat /data/misc/wif 阅读全文
posted @ 2018-03-02 15:41 Gaoyongxian666 阅读(524) 评论(0) 推荐(0) 编辑
摘要: 1.adb准备好,我建议,下载Androidstudio,因为这样adb是最新的,可能会避免很多问题 2.adb connect 127.0.0.1:xxxx (网易mumu是7555,别的模拟器自行百度) 3.启动appiumdesktop。开启会话。填写配置信息 这其中最要注意的是设备名称,因为 阅读全文
posted @ 2018-03-02 15:14 Gaoyongxian666 阅读(487) 评论(0) 推荐(0) 编辑
摘要: 1.adb连接模拟器 每次ide重启后需要用adb命令重连模拟器 adb connect 127.0.0.1 这句命令默认会连5555端口,谷歌官方模拟器就是用这个端口,但是这些国产模拟器用的端口却不一样 夜神模拟器 adb connect 127.0.0.1:62001 逍遥模拟器 adb con 阅读全文
posted @ 2018-03-02 14:42 Gaoyongxian666 阅读(434) 评论(0) 推荐(0) 编辑
摘要: import stringstr = 'abcde' list = list(str)list['a', 'b', 'c', 'd', 'e']str'abcde'str_convert = ''.join(list)str_convert'abcde' 一、list转字符串 命令:''.join( 阅读全文
posted @ 2018-02-21 15:14 Gaoyongxian666 阅读(431) 评论(0) 推荐(0) 编辑
摘要: Python提供了必要的函数和方法进行默认情况下的文件基本操作 文件打开方式: open(name[,mode[buf]]) name:文件路径 mode:打开方式 buf:缓冲buffering大小 文件读取方式: read([size]):读取文件(读取size字节,默认读取全部) readli 阅读全文
posted @ 2018-02-21 15:13 Gaoyongxian666 阅读(2341) 评论(0) 推荐(0) 编辑
摘要: 项目地址:https://github.com/openatx/uiautomator2,详情见文档 命令行 python -m weditor(http://atx.open.netease.com)ctrl+c退出服务 每次运行脚本,要执行下边的命令一遍,这样才会打开服务,上面的ui,和脚本才会 阅读全文
posted @ 2018-02-20 23:23 Gaoyongxian666 阅读(6226) 评论(0) 推荐(0) 编辑
摘要: 一、window系统 1.virtualenv的使用 2.pycharm使用 环境变量,path的作用:命令行中执行的命令,他们的路径,必须在path路径中,如果命令行找不到该命令,就是说path没写好。 虚拟环境相当于是创建了一个:安装python当时所安装的文件结构。 每个环境互相不干扰,前面的 阅读全文
posted @ 2017-10-04 14:34 Gaoyongxian666 阅读(442) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16