Version
1.60.0
Steps to reproduce
Unfortunately the webpage is not something I can share here, and despite my best efforts I have not been able to replicate the issue yet in a minimal example. I posted on the Discord and didn't find much help, I'm hoping someone here who might know more about the Playwright tracing internals might be able to help me narrow it down.
- Navigate to a page which has an overlay (for example, a spinner that blocks the screen behind it) that's normally hidden by a CSS class (e.g.
.no-display { display: none !important; }
- Remove the
no-display CSS class and then add it back again (on the website in question this is done with jQuery 3.4.1 addClass)
- Continue testing other things on the page
Expected behavior
I expect the overlay and spinner to no longer be visible on the Playwright trace after the point where they disappear in the test run
Actual behavior
In the Playwright trace, after the point where the overlay disappeared in the actual test run (and is shown to have disappeared in the screenshots), it is still visible in the DOM snapshot, and inspecting it shows that the no-display class is not present in the DOM snapshot
Additional context
I've replicated the conditions as close as I reasonably can in a minimal example and have not managed to replicate the issue. I'll continue to try and narrow it down, but I am happy to answer questions about the webpage in question.
Also, this is not just happening on spinners, it's happening on other overlays too, such as custom select menus and popovers. As far as I can tell what they have in common is that they are all hidden by adding a CSS class.
I also found out that jQuery is setting the CSS class using setAttribute, if that helps at all.
Environment
System:
OS: Windows 11 10.0.26100
CPU: (28) x64 13th Gen Intel(R) Core(TM) i7-13850HX
Memory: 4.90 GB / 31.69 GB
Binaries:
Node: 24.14.0 - C:\nvm4w\nodejs\node.EXE
Yarn: 1.22.22 - C:\nvm4w\nodejs\yarn.CMD
npm: 11.9.0 - C:\nvm4w\nodejs\npm.CMD
IDEs:
VSCode: 1.108.2 - C:\Program Files\Microsoft VS Code\bin\code.CMD
Languages:
Bash: 5.3.9
npmPackages:
@playwright/test: ^1.60.0 => 1.60.0
Version
1.60.0
Steps to reproduce
Unfortunately the webpage is not something I can share here, and despite my best efforts I have not been able to replicate the issue yet in a minimal example. I posted on the Discord and didn't find much help, I'm hoping someone here who might know more about the Playwright tracing internals might be able to help me narrow it down.
.no-display { display: none !important; }no-displayCSS class and then add it back again (on the website in question this is done with jQuery 3.4.1addClass)Expected behavior
I expect the overlay and spinner to no longer be visible on the Playwright trace after the point where they disappear in the test run
Actual behavior
In the Playwright trace, after the point where the overlay disappeared in the actual test run (and is shown to have disappeared in the screenshots), it is still visible in the DOM snapshot, and inspecting it shows that the
no-displayclass is not present in the DOM snapshotAdditional context
I've replicated the conditions as close as I reasonably can in a minimal example and have not managed to replicate the issue. I'll continue to try and narrow it down, but I am happy to answer questions about the webpage in question.
Also, this is not just happening on spinners, it's happening on other overlays too, such as custom select menus and popovers. As far as I can tell what they have in common is that they are all hidden by adding a CSS class.
I also found out that jQuery is setting the CSS class using
setAttribute, if that helps at all.Environment
System: OS: Windows 11 10.0.26100 CPU: (28) x64 13th Gen Intel(R) Core(TM) i7-13850HX Memory: 4.90 GB / 31.69 GB Binaries: Node: 24.14.0 - C:\nvm4w\nodejs\node.EXE Yarn: 1.22.22 - C:\nvm4w\nodejs\yarn.CMD npm: 11.9.0 - C:\nvm4w\nodejs\npm.CMD IDEs: VSCode: 1.108.2 - C:\Program Files\Microsoft VS Code\bin\code.CMD Languages: Bash: 5.3.9 npmPackages: @playwright/test: ^1.60.0 => 1.60.0