Playwright 交互式调试工具
Project description
mp-repl
Playwright 交互式调试工具 - 提升自动化脚本开发效率
安装
pip install mp-repl
playwright install chromium
快速开始
# 启动 REPL(自动重连上次的浏览器)
pw-repl
# 连接浏览器
pw> connect 127.0.0.1:9222
# 快捷导航
pw> go github
pw> go kaggle
# 页面操作
pw> btn 'Sign in'
pw> fill '#email' 'test@example.com'
pw> click '#submit'
# 执行 Playwright 代码
pw> page.locator('button').click()
pw> await page.title()
# 变量赋值
pw> mypage = page
pw> title = await page.title()
# 加载并执行脚本
pw> run my_script.py
pw> my_function()
会话管理
# 列出会话(自动检测当前平台)
pw> sessions
[0] github/user1
[1] github/user2
# 加载会话
pw> session 0
✓ Session loaded: github/user1
✓ Page reloaded
# 保存会话
pw> save myuser
✓ Created: github/myuser
✓ Session saved
# 清理会话
pw> clear # 当前页面
pw> clear --all # 所有
主要功能
- 快捷导航:
go kaggle,go github,go google - 页面操作:
btn,click,fill,txt,wait - Playwright 执行:
page.xxx,browser.xxx - 脚本执行:
run,funcs, 支持 debug() 断点 - 多 Tab 管理:
pages,page <index> - 会话管理:
sessions,session,save,clear - 历史记录:
history,r <index>
文档
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
mp_repl-0.1.38.tar.gz
(16.8 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
mp_repl-0.1.38-py3-none-any.whl
(18.1 kB
view details)
File details
Details for the file mp_repl-0.1.38.tar.gz.
File metadata
- Download URL: mp_repl-0.1.38.tar.gz
- Upload date:
- Size: 16.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1deb3d1730de87852cffd75d709aca3c86e81b2574ef3b153ebc207cfde9cf41
|
|
| MD5 |
179cdcf1219097f6e4cbea07af5a0464
|
|
| BLAKE2b-256 |
c851797a1975595d68f1d8a7bfae71fc86628c02f2d506359c89c7b9a91ff98d
|
File details
Details for the file mp_repl-0.1.38-py3-none-any.whl.
File metadata
- Download URL: mp_repl-0.1.38-py3-none-any.whl
- Upload date:
- Size: 18.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
90a0c27ae8f3c9dce38f00bba3202e294d5d4d0ddd8a3bc50431de24fde91871
|
|
| MD5 |
a136536aed36e211e160dbfd12347829
|
|
| BLAKE2b-256 |
f9be8c7bd3573a5f426bd363819e766c7e066978a3e35455223761c101fca6a6
|