pub struct FillBuilder<'a> {
inner: Weak<ElementHandle>,
args: FillArgs<'a>,
}Fields§
§inner: Weak<ElementHandle>§args: FillArgs<'a>Implementations§
Source§impl<'a> FillBuilder<'a>
impl<'a> FillBuilder<'a>
pub(crate) fn new(inner: Weak<Impl>, value: &'a str) -> Self
pub async fn fill(self) -> Result<(), Arc<Error>>
Sourcepub fn no_wait_after(self, x: bool) -> Self
pub fn no_wait_after(self, x: bool) -> Self
Actions that initiate navigations are waiting for these navigations to happen and for pages to start loading. You can
opt out of waiting via setting this flag. You would only need this option in the exceptional cases such as navigating to
inaccessible pages. Defaults to false.
pub fn timeout(self, x: f64) -> Self
pub fn clear_no_wait_after(self) -> Self
pub fn clear_timeout(self) -> Self
Auto Trait Implementations§
impl<'a> Freeze for FillBuilder<'a>
impl<'a> RefUnwindSafe for FillBuilder<'a>
impl<'a> Send for FillBuilder<'a>
impl<'a> Sync for FillBuilder<'a>
impl<'a> Unpin for FillBuilder<'a>
impl<'a> UnwindSafe for FillBuilder<'a>
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