摘要: 先安装python所需要的依赖 yum -y install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gdbm-devel db4-devel libpcap-de 阅读全文
posted @ 2022-07-01 14:24 雪丶寒 阅读(146) 评论(0) 推荐(0)
摘要: 1 安装playwright # 安装 pip install playwright # 安装 Chromium、Firefox 和 WebKit浏览器命令 playwright install 2 启动浏览器 from playwright.sync_api import sync_playwri 阅读全文
posted @ 2022-02-28 17:55 雪丶寒 阅读(2394) 评论(0) 推荐(2)
摘要: 1 首先要准备好2个工具,pyinstxtractor.py和uncompyle6 pyinstxtractor下载地址 https://github.com/extremecoders-re/pyinstxtractor uncompyle6直接通过pip安装就可以了 pip install un 阅读全文
posted @ 2021-01-30 22:27 雪丶寒 阅读(1384) 评论(0) 推荐(0)
摘要: js_code = """ function getRect(elements) { var rect = elements.getBoundingClientRect(); w = rect.width || rect.right - rect.left; h = rect.height || r 阅读全文
posted @ 2020-12-29 10:54 雪丶寒 阅读(494) 评论(0) 推荐(0)
摘要: 一:可以使用selenium去点击 selenium默认的点击操作是点元素0,0点坐标,那么我们可以在元素x,y坐标上加5,让点击操作往里一点。 from selenium.webdriver.common.action_chains import ActionChains ActionChains 阅读全文
posted @ 2020-12-29 10:50 雪丶寒 阅读(532) 评论(0) 推荐(0)