Category:
Cypress
//Click on radio button and verify the radio button is clicked
cy.get('.radiobutton').check().should('be.checked')
//Verifying the radio button is not clicked
cy.get('.radiobutton').should('not.be.checked')
Hire QA – Specialized in QA Recruitment, Technical Interviews and Testing Solutions
//Click on radio button and verify the radio button is clicked
cy.get('.radiobutton').check().should('be.checked')
//Verifying the radio button is not clicked
cy.get('.radiobutton').should('not.be.checked')