UNPKG

@revoloo/cypress6

Version:

Cypress.io end to end testing tool

10 lines (9 loc) 229 B
describe('issue 7170', () => { it('can type in a number field correctly', () => { cy.visit('fixtures/issue-7170.html') cy.get('button').click() cy.get('input') .type('2') .should('have.value', '12') }) })