Skip to content

Instantly share code, notes, and snippets.

@hypeJunction
Created January 9, 2022 10:49
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/7adec764f8b81fc784be4d3c5b44a32c to your computer and use it in GitHub Desktop.
Save hypeJunction/7adec764f8b81fc784be4d3c5b44a32c to your computer and use it in GitHub Desktop.
Cypress.Commands.add('press', { prevSubject: 'element' }, (subject: JQuery) => {
cy.wrap(subject)
.focus();
cy.focused()
.type('{enter}');
return cy.wrap(subject);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment