会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
Gaoyongxian666
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
12
13
14
15
16
2018年3月3日
from appium import webdriver 报错
摘要: from appium import webdriver 报错 看看你的文件是不是就叫appium
阅读全文
posted @ 2018-03-03 10:15 Gaoyongxian666
阅读(1446)
评论(0)
推荐(0)
编辑
钛备份
摘要: 当我们想要用钛备份备份一个软件且保留登陆状态的时候,有些app千万别退出登陆,可能会向服务器发消息,从而让我们恢复不了账号 更好的操作是卸载app,之后一起恢复。
阅读全文
posted @ 2018-03-03 01:03 Gaoyongxian666
阅读(383)
评论(0)
推荐(0)
编辑
2018年3月2日
adb命令
摘要: 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
阅读(532)
评论(0)
推荐(0)
编辑
appium desktop连接模拟器
摘要: 1.adb准备好,我建议,下载Androidstudio,因为这样adb是最新的,可能会避免很多问题 2.adb connect 127.0.0.1:xxxx (网易mumu是7555,别的模拟器自行百度) 3.启动appiumdesktop。开启会话。填写配置信息 这其中最要注意的是设备名称,因为
阅读全文
posted @ 2018-03-02 15:14 Gaoyongxian666
阅读(499)
评论(0)
推荐(0)
编辑
adb
摘要: 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
阅读(436)
评论(0)
推荐(0)
编辑
2018年2月21日
list与str互转
摘要: 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
阅读(438)
评论(0)
推荐(0)
编辑
python--文件的读写操作
摘要: Python提供了必要的函数和方法进行默认情况下的文件基本操作 文件打开方式: open(name[,mode[buf]]) name:文件路径 mode:打开方式 buf:缓冲buffering大小 文件读取方式: read([size]):读取文件(读取size字节,默认读取全部) readli
阅读全文
posted @ 2018-02-21 15:13 Gaoyongxian666
阅读(2361)
评论(0)
推荐(0)
编辑
2018年2月20日
uiautomator2
摘要: 项目地址:https://github.com/openatx/uiautomator2,详情见文档 命令行 python -m weditor(http://atx.open.netease.com)ctrl+c退出服务 每次运行脚本,要执行下边的命令一遍,这样才会打开服务,上面的ui,和脚本才会
阅读全文
posted @ 2018-02-20 23:23 Gaoyongxian666
阅读(6288)
评论(0)
推荐(0)
编辑
2017年10月4日
virturalenv 虚拟环境
摘要: 一、window系统 1.virtualenv的使用 2.pycharm使用 环境变量,path的作用:命令行中执行的命令,他们的路径,必须在path路径中,如果命令行找不到该命令,就是说path没写好。 虚拟环境相当于是创建了一个:安装python当时所安装的文件结构。 每个环境互相不干扰,前面的
阅读全文
posted @ 2017-10-04 14:34 Gaoyongxian666
阅读(454)
评论(0)
推荐(0)
编辑
上一页
1
···
12
13
14
15
16
公告