摘要: adb shell monkey -p "com.xueqiu.android" -vvv 1 阅读全文
posted @ 2022-01-13 16:08 martinsun 阅读(67) 评论(0) 推荐(0) 编辑
摘要: 1、新建bat文件,复制一下内容运行 @echo off title=关闭 Chrome 浏览器自动更新服务 sc config gupdate start= Disabled > nul && sc config gupdatem start= disabled > nul && echo 处理完 阅读全文
posted @ 2021-11-07 10:26 martinsun 阅读(171) 评论(0) 推荐(0) 编辑
摘要: 账号相关 1、ssh初始化参考 https://gitee.com/help/articles/4181 2、git多账号管理 https://gitee.com/help/articles/4229#article-header0 3、git远程密码更改 https://gitee.com/hel 阅读全文
posted @ 2021-11-06 09:37 martinsun 阅读(179) 评论(0) 推荐(0) 编辑
摘要: git仓库建好后,如果仓库有md文件,需要先pull一次 1、报错信息如下 The most similar command is credential-store To https://gitee.com/martin-sun/web-ui-test-excel-driver.git ! [rej 阅读全文
posted @ 2021-11-06 09:22 martinsun 阅读(474) 评论(0) 推荐(0) 编辑
摘要: selenium.webdriver.support.wait.WebDriverWait"""参数 ignored_exceptions=None """ def until(self, method, message=''): """Calls the method provided with 阅读全文
posted @ 2021-11-05 10:37 martinsun 阅读(172) 评论(0) 推荐(0) 编辑
摘要: /etc/sysconfig/network-scripts/ifcfg-ens33 BOOTPROTO=static ONBOOT=yes IPADDR=192.168.226.128 # IP地址(重要)。 NETMARSK=255.255.255.0 # 子网掩码(重要)。 GATEWAY=1 阅读全文
posted @ 2021-09-28 22:32 martinsun 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 解决方案: 删除项目根目录下的_init_.py文件,否则会提示找不到模块 阅读全文
posted @ 2021-09-01 07:19 martinsun 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 1、类型转换 str="['test']" listobj=eval(str) str="{'test':1}" dictob=eval(str) 2、获取字符串名称储存的对象 obj_str=xxobject eval('objec_str') 阅读全文
posted @ 2021-08-27 15:53 martinsun 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 1 windows 安装openssh 2 打开cmd,运行命令行 ssh-keygen -t rsa 3 进入用户名/.ssh文件夹 4 使用ptyhon 同步 公钥 id_rsa.pub至linux服务器 python ssh-copy-id.py -i :c:/users/{根换自己当前登录用 阅读全文
posted @ 2021-08-15 12:16 martinsun 阅读(683) 评论(0) 推荐(0) 编辑
摘要: # 匹配首尾字符串之间的内容,不包含首尾(?<=db_id=").*(?=" mock_id) 阅读全文
posted @ 2021-05-27 16:42 martinsun 阅读(19) 评论(0) 推荐(0) 编辑