feat: add --playwright-debug=cli for Python test agents - #315
Merged
Simon Knott (Skn0tt) merged 2 commits intoAug 10, 2026
Merged
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
Dmitry Gozman (dgozman)
approved these changes
Aug 10, 2026
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-…Skills are updated in microsoft/playwright#42165.
References microsoft/playwright#38610.