diff --git a/cypress/e2e/smoke/create_tx.cy.js b/cypress/e2e/smoke/create_tx.cy.js index 49d2f9a66d..808a621d7a 100644 --- a/cypress/e2e/smoke/create_tx.cy.js +++ b/cypress/e2e/smoke/create_tx.cy.js @@ -59,6 +59,8 @@ describe('Queue a transaction on 1/N', () => { it('should create a queued transaction', () => { cy.get('button[type="submit"]').should('not.be.disabled') + cy.wait(1000) + cy.contains('Native token transfer').should('be.visible') // Changes nonce to next one @@ -96,14 +98,14 @@ describe('Queue a transaction on 1/N', () => { cy.get('@Paramsform').submit() // Asserts the execute checkbox is uncheckable - cy.contains('No, only').click() + cy.contains('No, later').click() cy.get('input[name="nonce"]') .clear({ force: true }) .type(currentNonce + 10, { force: true }) .type('{enter}', { force: true }) - cy.contains('Submit').click() + cy.contains('Sign').click() }) it('should click the notification and see the transaction queued', () => {