PlayWright安装和使用(python)

当今常用的三个常用的浏览器驱动:

Selenium Puppeteer Playwright
JavaScript 支持 官方支持 官方支持 官方支持
Python 异步支持 第三方,而且 bug 不少 官方支持
Python 同步支持 官方支持 官方支持
维护者 社区 Google 微软
可操作性浏览器 Chrome/Firefox/Safari/Edge Chrome/Firefox Chrome/Firefox/Safari/Edge
模拟操作丰富度 一般 极好 很好
Cookie 支持 一般 一般 API 非常友好
代理切换支持 一般 一般 极好

所以,Playwright是未来趋势,学会用Playwright即可

1. 安装

pip install --upgrade pip
pip install playwright
playwright install #一定不要忘了这句
# npm install playwright  #(如果上一条命令无代理无法安装就用这条命令,要使用nodejs设置npm代理安装)

不熟悉npm的可参考(如果你是在有网络限制的公司安装playwrigtht):什么是 npm —— 写给初学者的编程教程

如果实在不行,也可离线安装,参考:

win10系统开发环境快速安装Playwright python的方法_phoenix339的博客-CSDN博客_playwright安装

如果某个浏览器安装有问题,可挑选特定的安装

如:npm i -D playwright-webkit

Installation | Playwright 中文文档 | Playwright 中文网

2. 使用:

参考资料:

Getting Started | Playwright Python

Playwright: 比 Puppeteer 更好用的浏览器自动化工具 - 知乎

上一篇:windows和Linux比较


下一篇:playwright-python + pytest 模拟登陆后进行测试