Skip to content

Instantly share code, notes, and snippets.

@hypeJunction
Created January 8, 2022 12:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hypeJunction/702f914dac5e025824e60b5d4f41976d to your computer and use it in GitHub Desktop.
Save hypeJunction/702f914dac5e025824e60b5d4f41976d to your computer and use it in GitHub Desktop.
cy.findByRole('form', { name: 'Login' }).as('landmark');
cy.get('@landmark').findByLabelText('Username').type('johh.doe');
cy.get('@landmark').findByLabelTest('Password').type('secret');
cy.get('@landmark').findByRole('button', { name: 'Submit' }).click();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment