Skip to content

Instantly share code, notes, and snippets.

View RFMC22's full-sized avatar
😁
programming

Renee RFMC22

😁
programming
View GitHub Profile
@RFMC22
RFMC22 / getCommand.js
Last active July 7, 2023 22:15
comando get cypress (mejores practicas)
Cypress.Commands.add('getBySel', (selector, ...args) => {
return cy.get(`[data-cy=${selector}]`, ...args);
})