We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
page.pause
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Context:
Code Snippet
test('asdf', async ({ page }) => { await page.goto('https://google.com') await page.pause() })
Describe the bug
page.pause does not open the inspector when running tests with the vscode extension.
when clicking "Debug Test", it doesn't pause at all
when clicking "Run Test". it pauses on page.pause, but since there's no inspector there's no way to resume:
The text was updated successfully, but these errors were encountered:
We allow one debugger at a time, when using VS Code, you should use regular JS debugger w/ debugger; statement and breakpoints instead!
Sorry, something went wrong.
No branches or pull requests
Context:
Code Snippet
Describe the bug
page.pause
does not open the inspector when running tests with the vscode extension.when clicking "Debug Test", it doesn't pause at all
when clicking "Run Test". it pauses on
page.pause
, but since there's no inspector there's no way to resume:The text was updated successfully, but these errors were encountered: