-
Notifications
You must be signed in to change notification settings - Fork 4.2k
New issue
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
Migrate 'custom taxonomies' e2e test to Playwright #56486
Conversation
Size Change: 0 B Total Size: 1.7 MB ℹ️ View Unchanged
|
Co-authored-by: Alvi Tazwar <55917380+alvitazwar@users.noreply.github.com>
b8503dd
to
513de34
Compare
// Open the panel if needed. | ||
if ( | ||
( await modelPanel.getAttribute( 'aria-expanded' ) ) === 'false' | ||
) { | ||
await modelPanel.click(); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this another example of the global state bleed when running tests in parallel?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Correct.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ouch!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This doesn't solve the persisted state issue, but maybe we should introduce the openDocumentSettingsPanel
helper and hide implementation details there.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just one non-blocking question. 🚀
What?
Part of #38851.
Supersedes and closes #45178.
PR migrates sidebar-permalink.test.js e2e test to Playwright.
Why?
See #38851.
How?
The migration is based on #45178, which I think is abandoned. I've included the author so they get credit for their contribution.
Testing Instructions