diff --git a/tests/e2e/specs/browser/index.cy.js b/tests/e2e/specs/browser/index.cy.js index 8c0f31e75..d7193d960 100644 --- a/tests/e2e/specs/browser/index.cy.js +++ b/tests/e2e/specs/browser/index.cy.js @@ -3,7 +3,7 @@ describe('Browser', () => { cy .viewport('iphone-se2') .visit('/browser', { login: true }); - cy.getIframeBody().find('img').should('be.visible').should('length.gte', 3); + cy.getIframeBody().find('img').should('be.visible').should('length.eq', 3); cy.matchImage(); }); }); diff --git a/tests/e2e/specs/names/__image_snapshots__/Names shows initial screen #0.png b/tests/e2e/specs/names/__image_snapshots__/Names shows initial screen #0.png index 8e36080b0..84a6afdd2 100644 Binary files a/tests/e2e/specs/names/__image_snapshots__/Names shows initial screen #0.png and b/tests/e2e/specs/names/__image_snapshots__/Names shows initial screen #0.png differ diff --git a/tests/e2e/specs/transfer/sign-transaction.cy.js b/tests/e2e/specs/transfer/sign-transaction.cy.js index 7f66b0882..9f961832d 100644 --- a/tests/e2e/specs/transfer/sign-transaction.cy.js +++ b/tests/e2e/specs/transfer/sign-transaction.cy.js @@ -113,7 +113,7 @@ describe('Sign transaction', () => { .viewport('iphone-se2') .visit(url.href.replace('http://localhost', ''), { login: 'wallet-empty' }); cy.get('button').contains('Confirm').click(); - const skipButton = cy.get('.modal-plain .ae-button.primary'); + const skipButton = cy.get('.modal-plain .ae-button.primary').contains('ok'); cy.matchImage(); skipButton.click();