We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
1.48.2
// @ts-check const { test, expect } = require('@playwright/test'); test('display popover when clicking the button', async ({ page }) => { await page.goto('https://popoverexample.tiiny.site/'); await expect(page).toHaveTitle('Popover example'); const popover = page.getByText("I'm a popover"); await expect(popover).not.toBeVisible(); await page.getByRole('button').click(); await expect(popover).toBeVisible(); });
npx playwright test --trace on
We should see the active popover in the trace's screenshots.
We don't see the popover (maybe the whole toplayer) in the trace's screenshots.
No response
System: OS: Windows 11 10.0.22621 CPU: (12) x64 Intel(R) Core(TM) i7-9750H CPU @ 2.60GHz Memory: 6.32 GB / 31.74 GB Binaries: Node: 20.18.0 - C:\dev\devtools\nvm\nodejs\node.EXE npm: 10.8.2 - C:\dev\devtools\nvm\nodejs\npm.CMD IDEs: VSCode: 1.95.3 - C:\Users\jb.muscat\AppData\Local\Programs\Microsoft VS Code\bin\code.CMD npmPackages: @playwright/test: ^1.48.2 => 1.48.2
The text was updated successfully, but these errors were encountered:
dgozman
No branches or pull requests
Version
1.48.2
Steps to reproduce
npx playwright test --trace on
Expected behavior
We should see the active popover in the trace's screenshots.
Actual behavior
We don't see the popover (maybe the whole toplayer) in the trace's screenshots.
Additional context
No response
Environment
The text was updated successfully, but these errors were encountered: