feat: add --playwright-debug=cli for Python test agents - #315
Open
Simon Knott (Skn0tt) wants to merge 2 commits into
Open
feat: add --playwright-debug=cli for Python test agents#315Simon Knott (Skn0tt) wants to merge 2 commits into
Simon Knott (Skn0tt) wants to merge 2 commits into
Conversation
Bind the browser, print attach instructions, and pause on the first plugin context so agents can attach via `python -m playwright cli`. Requires -s/--capture=no and a single xdist worker. Mirrors the skill- based path from microsoft/playwright#38610 (not MCP). Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 36905b3d-2f7c-4da8-8cc7-a644814e8004
Same as microsoft/playwright-python#3091. PyPI publishing is unaffected (handled by .azure-pipelines/publish.yml). conda-forge still has the package if people want it from there. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 36905b3d-2f7c-4da8-8cc7-a644814e8004
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This adds
--playwright-debug=cli, so a pytest run can pause and print apython -m playwright cli attach …command that agents (or you) can use to inspect the live browser.pytest --playwright-debug=cli -s # → attach with: python -m playwright cli attach tw-…On the first plugin
new_context, webrowser.bind(), print the attach banner, zero timeouts, andrequest_pause(). Later contexts are left alone - CLI attach only drivescontexts()[0]. No unbind on teardown (same rough shape as JS today).Guards:
-s/--capture=no(so the attach line isn't swallowed)-n≠ 1playwright>=1.59(browser.bind+ context debugger)Covered with configure-guard tests plus a real attach → snapshot → resume e2e for both sync and asyncio.
This is the skill-based path from microsoft/playwright#38610, not MCP. Pytest codegen / skills docs can follow separately.