pub enum Options {
Role(ByRoleOptions),
Text(ByTextOptions),
LabelText(ByLabelTextOptions),
PlaceholderText(ByPlaceholderTextOptions),
DisplayValue(ByDisplayValueOptions),
AltText(ByAltTextOptions),
Title(ByTitleOptions),
TestId(ByTestIdOptions),
}
Expand description
Options enum for unified option handling
Variants§
Role(ByRoleOptions)
Role-based query options
Text(ByTextOptions)
Text-based query options
LabelText(ByLabelTextOptions)
Label text query options
PlaceholderText(ByPlaceholderTextOptions)
Placeholder text query options
DisplayValue(ByDisplayValueOptions)
Display value query options
AltText(ByAltTextOptions)
Alt text query options
Title(ByTitleOptions)
Title query options
TestId(ByTestIdOptions)
Test ID query options
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Options
impl RefUnwindSafe for Options
impl Send for Options
impl Sync for Options
impl Unpin for Options
impl UnwindSafe for Options
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more