Radiovariable
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.
Example
await RadioButton('Public').click();
await RadioButton('Private').is({ disabled: true });
await RadioButton({ id: 'privacy-public', disabled: true }).exists();
Filters
title: string – Filter by titleid: string – Filter by idvisible: boolean – Filter by visibility. Defaults totrue. SeeisVisible.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 tofalse.focused: boolean – Filter by whether the radio button is focused. Seefocused.
Actions
click():Interaction– Click on the radio buttonchoose():Interaction– Click on the radio buttonfocus():Interaction– Focus the radio buttonblur():Interaction– Blur the radio button