Soy nuevo en cypress y me gustaría saber si hay una manera de resaltar el elemento que se selecciona cuando se usa el comando/función Tab() en Cypress.
Aquí está mi código
cy.get('#ComName') .type("PRINTTK") .tab() .focused() cy.get('#UserName') .type("BarbaraS") .tab() cy.get('#PSWD') .type("PSWD1234") .tab() .focused()Este es el código Tab()
/// <reference types="cypress" /> declare namespace Cypress { interface Chainable { tab(options?: Partial<{ shift: Boolean }>): Chainable } }