https://cypress.io logo
`it("Creates xxx", () => { cy.get('some_input'...
# e2e-testing
p
Copy code
it("Creates xxx", () => {
    cy.get('some_input').type(key());
    });

it("Tests feature", () => {
        cy.get('some_input').should('have.value', key())
    })