Playwright使用教程
GuoJun 2024-01-25 Python
# 简介
Playwright是一个强大的Python库,仅用一个API即可自动执行Chromium、Firefox、WebKit等主流浏览器自动化操作,并同时支持以无头模式、有头模式运行。
Playwright提供的自动化技术是绿色的、功能强大、可靠且快速,支持Linux、Mac以及Windows操作系统。
# 安装
安装playwright库
pip install playwright
安装浏览器驱动文件(安装过程稍微有点慢)
python -m playwright install
# 录制
查看录制命令参数
playwright codegen --help
- -o:将录制的脚本保存到一个文件
- --target:规定生成脚本的语言,有JS和Python两种,默认为Python
- -b:指定浏览器驱动
示例:
playwright codegen -0 test.py