Skip to content

chore: fix selector playground ct flaky test #31595

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

Merged
merged 1 commit into from
Apr 29, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,15 @@ describe('SelectorPlayground', () => {
cy.get('[data-cy="playground-num-elements"]').contains('Invalid')
})

it('focuses and copies selector text', () => {
it('focuses playground selector', () => {
mountSelectorPlayground()
cy.get('[data-cy="playground-selector"]').as('copy').clear().type('.foo-bar')

cy.get('@copy').click()
cy.get('@copy').should('be.focused')
})

it('copies selector text', () => {
const copyStub = cy.stub()

cy.stubMutationResolver(Clipboard_CopyToClipboardDocument, (defineResult, { text }) => {
Expand All @@ -100,18 +108,13 @@ describe('SelectorPlayground', () => {

cy.spy(autIframe, 'toggleSelectorHighlight')

cy.get('[data-cy="playground-selector"]').as('copy').clear().type('.foo-bar')

cy.get('@copy').click()
cy.get('@copy').should('be.focused')

cy.get('[data-cy="playground-copy"]').trigger('mouseenter')
cy.get('[data-cy="selector-playground-tooltip"]').should('be.visible').contains('Copy to clipboard')

cy.get('[data-cy="playground-copy"]').click()
cy.get('[data-cy="selector-playground-tooltip"]').should('be.visible').contains('Copied!')

cy.wrap(copyStub).should('have.been.calledWith', 'cy.get(\'.foo-bar\')')
cy.wrap(copyStub).should('have.been.calledWith', 'cy.get(\'body\')')
})

it('prints elements when selected elements found', () => {
Expand Down
Loading