上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 64 下一页
摘要: 0.先将pycharm中Settings中的“Version Control” 中无效的Git删除,并且点击OK,确定删除(如果没有,则不需要删除); 1.登录到 “https://github.com/settings/tokens”,将原有的token清空,关闭pycharm,重启pycharm 阅读全文
posted @ 2020-06-21 10:03 大话人生 阅读(4069) 评论(0) 推荐(0)
摘要: a = "1D0\x00" b = a.encode("gbk").decode("unicode_escape") #将字符串先编码后解码,解决单斜杠,变为双斜杠问题 阅读全文
posted @ 2020-06-16 14:18 大话人生 阅读(1253) 评论(0) 推荐(0)
摘要: 手游UI自动化: github网址:https://github.com/AirtestProject/Airtest 安装:pip install -U airtest pip install -i https://pypi.tuna.tsinghua.edu.cn/simple airtest 阅读全文
posted @ 2020-06-13 19:54 大话人生 阅读(263) 评论(0) 推荐(0)
摘要: 1.usb先连接手机与电脑; 2.adb devices :检测到手机; 3.adb tcpip 5555 :打开5555端口 4.拔掉数据线 5.adb connect 192.168.1.100:5555 其中192.168.1.100为你手机的实际IP地址 6.adb devices :查看是 阅读全文
posted @ 2020-06-12 22:03 大话人生 阅读(341) 评论(0) 推荐(0)
摘要: 1.安装: pip install -i https://pypi.tuna.tsinghua.edu.cn/simple uiautomator2 pip install -i https://pypi.tuna.tsinghua.edu.cn/simple weditor 2.使用: pytho 阅读全文
posted @ 2020-06-07 19:51 大话人生 阅读(962) 评论(0) 推荐(0)
摘要: https://www.w3school.com.cn/xmldom/dom_methods.asp https://www.cnblogs.com/cmt110/p/7464944.html https://www.cnblogs.com/wanghuixi/p/10786841.html htt 阅读全文
posted @ 2020-05-20 10:13 大话人生 阅读(127) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/qq_14997473/article/details/80875722 阅读全文
posted @ 2020-05-11 09:50 大话人生 阅读(2433) 评论(0) 推荐(0)
摘要: 1.ImportError: cannot import name 'six' 解决方法 django3已经把six独立出来了,不再包含six 解决方法一: django换回2版本的即可 解决方法二: pip install six 将 "from django.utils import six"换 阅读全文
posted @ 2020-05-06 14:29 大话人生 阅读(806) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/sunqiande88/article/details/80155587 阅读全文
posted @ 2020-05-06 13:52 大话人生 阅读(470) 评论(0) 推荐(0)
摘要: github地址:https://github.com/axios/axios 安装:npm install axios --save 导入: import axios from 'axios'; 使用: methods:{ //获取网络数据 reqData(){ axios.get('http:/ 阅读全文
posted @ 2020-05-04 20:40 大话人生 阅读(150) 评论(0) 推荐(0)
上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 64 下一页