UNPKG

@revoloo/cypress6

Version:

Cypress.io end to end testing tool

13 lines (11 loc) 253 B
// https://github.com/cypress-io/cypress/issues/565 describe('issue 565', () => { before(() => { cy .viewport(400, 400) .visit('/fixtures/issue-565.html') }) it('can click the first tr', () => { cy.get('td:first').click() }) })