Cypress - Writing Tests
Find the error in this test:
it('checks checkbox', () => { cy.get('#agree').check; cy.get('#agree').should('be.checked') })it('checks checkbox', () => { cy.get('#agree').check; cy.get('#agree').should('be.checked') })check is a method and requires parentheses to invoke it.check without parentheses, so method is not called.check method -> Option B15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions