Struct playwright::api::frame::SelectOptionBuilder[][src]

pub struct SelectOptionBuilder<'a> { /* fields omitted */ }

Implementations

impl<'a> SelectOptionBuilder<'a>[src]

pub async fn select_option(self) -> Result<Vec<String>, Arc<Error>>[src]

pub fn add_element(self, x: &ElementHandle) -> Self[src]

pub fn add_value(self, x: String) -> Self[src]

pub fn add_index(self, x: usize) -> Self[src]

pub fn add_label(self, x: String) -> Self[src]

pub fn no_wait_after(self, x: bool) -> Self[src]

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[src]

pub fn clear_no_wait_after(self) -> Self[src]

pub fn clear_timeout(self) -> Self[src]

pub fn clear_elements(self) -> Self[src]

pub fn clear_options(self) -> Self[src]

Auto Trait Implementations

impl<'a> !RefUnwindSafe for SelectOptionBuilder<'a>

impl<'a> Send for SelectOptionBuilder<'a>

impl<'a> Sync for SelectOptionBuilder<'a>

impl<'a> Unpin for SelectOptionBuilder<'a>

impl<'a> !UnwindSafe for SelectOptionBuilder<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.