Variable RadioButtonConst

RadioButton: any = RadioButtonInteractor

Call this InteractorConstructor to initialize a radio button Interactor. The radio button interactor can be used to interact with radio buttons on the page and to assert on their state.

The radio button is located by the text of its label.

await RadioButton('Public').click();
await RadioButton('Private').is({ disabled: true });
await RadioButton({ id: 'privacy-public', disabled: true }).exists();
  • title: string – Filter by title
  • id: string – Filter by id
  • visible: boolean – Filter by visibility. Defaults to true. See isVisible.
  • valid: boolean – Filter by whether the radio button is valid.
  • checked: boolean – Filter by whether the radio button is checked.
  • disabled: boolean – Filter by whether the radio button is disabled. Defaults to false.
  • focused: boolean – Filter by whether the radio button is focused. See focused.
  • click(): Interaction – Click on the radio button
  • choose(): Interaction – Click on the radio button
  • focus(): Interaction – Focus the radio button
  • blur(): Interaction – Blur the radio button