- 博客(53)
- 收藏
- 关注
转载 HttpUrlConnection 基础使用
https://www.cnblogs.com/libertycode/p/5979260.html
2019-05-24 20:04:49
218
转载 Android修改host不生效
https://blog.youkuaiyun.com/u012973069/article/details/54136649echo -e \\n >> /system/etc/hostsecho 192.168.0.246 www.aaa.com >> /system/etc/hosts
2019-05-13 20:40:34
1994
转载 No module named "Crypto"
https://www.cnblogs.com/fawaikuangtu123/p/9761943.htmlpip install pycryptodome
2019-04-30 17:00:32
296
转载 javadoc导出中文报错
https://www.cnblogs.com/wdh1995/p/7705441.html-encoding UTF-8 -charset UTF-8
2019-04-25 10:22:52
336
转载 Android Studio一些模板配置
https://cloud.tencent.com/developer/article/1130383
2019-04-25 10:21:26
1109
转载 windows下使用svn命令行
https://blog.youkuaiyun.com/qiuchangyong/article/details/25280125下载地址:http://subversion.apache.org/download.cgi#pre-releases
2019-03-20 18:09:21
2217
转载 IPV4与IPV6的区别
https://blog.youkuaiyun.com/chao199512/article/details/86139714
2019-03-14 20:24:44
474
原创 appium需要的jar包
包:selenium下载地址:http://selenium-release.storage.googleapis.com/index.html包:appium下载地址:http://appium.io/downloads.html
2019-03-12 16:23:48
1953
转载 appium findelementbyname不支持
https://blog.youkuaiyun.com/u011636207/article/details/86063609
2019-03-12 16:23:24
1312
转载 win10安装svn2503
https://blog.youkuaiyun.com/qq_36908841/article/details/80922157
2019-03-07 11:46:01
547
转载 uiautomator appium robotium对比
https://blog.youkuaiyun.com/lv18092081172/article/details/52123470
2019-02-18 03:13:41
674
转载 android耗电量测试
https://www.jianshu.com/p/d68ae67c9227 adb shell dumpsys batterystatus --enable full-wake-historyadb shell dumpsys batterystatus --resetadb shell dumpsys batterystatus>battery.txtpython h...
2019-02-18 01:01:21
437
原创 android输入法切换
查看已安装的输入法:adb shell ime list -a切换输入法:appium:adb shell ime set io.appium.android.ime/.UnicodeIMEsougou:adb shell ime set com.sohu.inputmethod.sogou/.SogouIMEadbkeyboard:adb shell ime set com....
2018-09-20 19:55:52
1320
原创 appium测试h5和小程序
1. 打开微信的debug开关debugx5.qq.com信息页面勾选“打开TBS内核调试功能”2. 定位元素工具h5: chrome://inspect小程序:uiautomatorviewer,安装TalkeBack chrome://inpect3. 查找元素https://www.cnblogs.com/yoyoketang/p/6123890.html...
2018-09-05 20:54:41
1524
原创 pycharm使用
1. 规范代码:code->reformat和inspections2. 安装库:PyCharm->Preferences->Project:XXX->Project Interpreter->+
2018-08-24 18:32:23
203
转载 testng小结
官方文档:http://testng.org/doc/documentation-main.html#running-testng
2018-08-23 19:25:10
136
转载 VirtualBox的四种网络连接方式
https://blog.youkuaiyun.com/shouldnotappearcalm/article/details/54933189
2018-04-24 11:47:23
259
转载 反编译apk
https://blog.youkuaiyun.com/s13383754499/article/details/789145921. apktool 作用:得到AndroidManifest.xml用法:java -jar apktool_2.0.1.jar d -f APK路径 -o 目标路径下载地址:https://bitbucket.org/iBotPeaches/apktool/downloads2...
2018-04-19 15:52:47
139
转载 .gitignore无效
https://www.cnblogs.com/zzcc/p/5695883.htmlgit rm -r --cached .git add .git commit -m 'update .gitignore'
2018-04-13 19:45:18
182
转载 安卓流畅度测试
转:http://www.cnblogs.com/summer-sun/p/5524663.html测试方法一:系统自带-开发者模式测试方法二:FPS Meter测试安卓帧数H5页面加载速度:window.performance.timing测试方法一:系统自带-开发者模式实际上,为了方便开发者测试,安卓本身就内置了流畅度检测的功能。不过,这需要我们开启隐藏的开发者选项。如果你在用原生系统,那么开...
2018-03-12 11:07:14
1916
转载 安卓隐藏及恢复状态栏和虚拟按键
隐藏虚拟键及顶部状态栏:adb shell settings put global policy_control immersive.full=*隐藏顶部状态栏(底部虚拟键会显示):adb shell settings put global policy_control immersive.status=*隐藏虚拟键(顶部状态栏会显示):adb shell settings put global ...
2018-02-08 20:48:08
12888
转载 Error parsing Mapper XML. Cause: java.lang.IllegalArgumentException: Result Maps collection already
http://blog.youkuaiyun.com/jiankunking/article/details/51857820最简单的方法就是直接删除target文件目录下所有文件即可,再次启动idea的时候会重新生成。
2018-01-22 02:17:21
590
转载 mac下git push避免每次都输入用户名和密码的配置
https://www.cnblogs.com/zhaoshunjie/p/6306927.html参考链接:http://www.linuxdiyf.com/linux/18389.html链接2:https://git-scm.com/book/zh/v2/Git-%E5%B7%A5%E5%85%B7-%E5%87%AD%E8%AF%81%E5%AD%98%E5%82%A8#_credenti...
2018-01-04 01:04:11
7144
原创 leakcanary使用
https://github.com/square/leakcanary dependencies { debugCompile 'com.squareup.leakcanary:leakcanary-android:1.5.2' releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5.2
2017-08-21 16:57:35
284
原创 fiddler修改response header
Rules->Customize Rules在OnBeforeResponse里追加 if (oSession.host.Contains("wallpaper.pandora.xiaomi.com")) { oSession.oResponse.headers.Remove("Content-
2017-03-31 18:22:41
5049
转载 修改bugzilla template
为bugzilla提交bug时添加默认内容(template)http://blog.youkuaiyun.com/hshl1214/article/details/50424154自定Bugzilla 页面模板http://blog.sina.com.cn/s/blog_7d2224110101hbhd.html
2017-03-13 16:43:15
621
原创 windows下搭建bugzilla
1. 安装包准备:perl http://www.activestate.com/downloadsmysql https://dev.mysql.com/downloads/mysql/bugzilla https://www.bugzilla.org/download/xampp https://www.apachefriends.org/zh_cn/index.html2.
2017-03-11 18:09:06
2579
转载 让fiddler自动解析出请求的hostip配置方法
1、打开Rules——>Customize Rules 找到这段代码“ static function Main() { //var today: Date = new Date(); //FiddlerObject.StatusText = " CustomRules.js was loaded at: " + today;
2016-06-20 10:18:20
863
原创 jmeter解析json
插件下载地址:官网:http://www.jmeter-plugins.org/downloads/all/云盘:https://yunpan.cn/cq4WJrCAj6Umh (提取码:ad5c)安装:解压后放到/home/sgn/tools/apache-jmeter-2.13/lib 目录重启jmeter使用:添加->后置处理器->JSON Path Ext
2016-04-15 19:08:08
608
转载 ubuntu下执行.py文件
http://blog.sina.com.cn/s/blog_9e56699c0101ckc7.html喔,摆弄了好久,终于实现了在unbuntu下运行一段python程序,而不是像之前只能在终端一句输入一句反应了,具体是这样做的:(前提概要1 系统执行python的目录是/usr/bin里面的python可执行文件,根据具体版本号确定,比如我用的就是python2.7
2016-03-29 19:18:15
22567
转载 linux下批量结束进程
http://www.jb51.net/LINUXjishu/43534.htmlps -ef|grep LOCAL=NO|grep -v grep|cut -c 9-15|xargs kill -9 管道符“|”用来隔开两个命令,管道符左边命令的输出会作为管道符右边命令的输入。下面说说用管道符联接起来的 几个命令: “ps - ef”是Red Hat 里查看所有进
2016-03-28 18:08:01
401
转载 HTTP中Get与Post的区别
http://www.cnblogs.com/hyddd/archive/2009/03/31/1426026.html
2016-03-24 14:32:12
199
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人