随笔分类 -  python

摘要:是源的问题 sudo pip install-i https://pypi.tuna.tsinghua.edu.cn/simple virtualenvwrapper Error while finding module specification for 'virtualenvwrapper.ho 阅读全文
posted @ 2020-09-24 23:24 酸辣土豆皮 阅读(296) 评论(0) 推荐(0)
摘要:可以先查看 adb devices adb开启root权限 adb root 将下载的frida-server传入手机 下载链接 adb push D:\js逆向处理\frida-server /data/local/tmp/ adb shell "chmod 755 /data/local/tmp 阅读全文
posted @ 2020-08-02 15:39 酸辣土豆皮 阅读(119) 评论(0) 推荐(0)
摘要:对于单个节点的隐藏图片或者隐藏的属性可以使用 已用在验证码滑块识别上 1 def execute_js(self, js): 2 """ 3 执行js 4 :param js: str 待执行的js 5 :return: {"type": "xxx", value: "xxx"} 6 """ 7 r 阅读全文
posted @ 2020-07-30 00:20 酸辣土豆皮 阅读(165) 评论(0) 推荐(0)
摘要:matchTemplate(image, templ, method, result=None, mask=None)image:表示等待搜索的图像templ:就是需要在image里面找的元素method:计算的匹配方法result:匹配结果图像 如果image=[W,H] templ=[w,h] 阅读全文
posted @ 2020-07-30 00:17 酸辣土豆皮 阅读(796) 评论(0) 推荐(0)
摘要:原因:执行js: 1 window.navigator.webdriver selenium模拟登录返回ture 正常返回 undefined 1 from selenium.webdriver import Chrome 2 from selenium.webdriver import Chrom 阅读全文
posted @ 2020-07-27 15:50 酸辣土豆皮 阅读(121) 评论(0) 推荐(0)
摘要:Python List insert()方法 Python 列表 描述 insert() 函数用于将指定对象插入列表的指定位置。 语法 insert()方法语法: list.insert(index, obj) 参数 index -- 对象 obj 需要插入的索引位置。 obj -- 要插入列表中的 阅读全文
posted @ 2020-07-01 20:22 酸辣土豆皮 阅读(415) 评论(0) 推荐(0)