Skip to content

Commit

Permalink
Merge pull request #5416 from nextcloud/backport/5411/stable28
Browse files Browse the repository at this point in the history
[stable28] update home button selector in file picker breadcrumbs
  • Loading branch information
mejo- committed Mar 1, 2024
2 parents 9583de7 + 43df514 commit f3ee7c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cypress/e2e/attachments.spec.js
Expand Up @@ -198,7 +198,7 @@ describe('Test all attachment insertion methods', () => {
cy.intercept({ method: 'POST', url: '**/filepath' }).as(requestAlias)

cy.log('Go back from home to sub folder')
cy.get('.file-picker nav [aria-label="Home"]').click()
cy.get('.file-picker nav [title="Home"]').click()
cy.get('.file-picker [data-filename="sub"]').click()

cy.log('Go to sub folder (b)')
Expand All @@ -217,7 +217,7 @@ describe('Test all attachment insertion methods', () => {
cy.intercept({ method: 'POST', url: '**/filepath' }).as(requestAlias)

cy.log('Go back to home')
cy.get('.file-picker nav [aria-label="Home"]').click()
cy.get('.file-picker nav [title="Home"]').click()

cy.log('Select the file in the filepicker')
cy.get('.file-picker [data-filename="github.png"]').click()
Expand Down

0 comments on commit f3ee7c1

Please sign in to comment.