Fabvariable
Call this InteractorConstructor to initialize a floating action button Interactor.
The fab interactor can be used to interact with fabs on the page and
to assert on their state.
The fab is located by the aria-label attribute or the visible text on the fab in otherwise.
Example
await Fab('add').click();
await Fab('add').is({ disabled: true });
await Fab({ id: 'add-button', disabled: true }).exists();
Filters
title: string – Filter by titleid: string – Filter by idvisible: boolean – Filter by visibility. Defaults totrue. SeeisVisible.disabled: boolean – Filter by whether the fab is disabled. Defaults tofalse.focused: boolean – Filter by whether the fab is focused. Seefocused.svgIcon: boolean - Filter by whether the fab has icon.
Actions
click():Interaction– Click on the fabfocus():Interaction– Move focus to the fabblur():Interaction– Move focus away from the fab