← Back to library
Cypressformsbeginnerv10+

Select a radio button

Choose a radio option by value and confirm mutual exclusivity.

1it('selects the express shipping radio', () => {
2  cy.visit('/checkout');
3
4  cy.get('[name="shipping"][value="express"]')
5    .check()
6    .should('be.checked');
7
8  // Other options must not be selected
9  cy.get('[name="shipping"][value="standard"]')
10    .should('not.be.checked');
11});
#radio#check#be.checked#exclusive