[][src]Struct thirtyfour::WebElement

pub struct WebElement<'a> {
    pub element_id: ElementId,
    pub session: &'a WebDriverSession,
}

The WebElement struct encapsulates a single element on a page.

WebElement structs are generally not constructed manually, but rather they are returned from a 'find_element()' operation using a WebDriver.

Example:

let elem = driver.find_element(By::Id("input-result")).await?;

You can also search for a child element of another element as follows:

let elem = driver.find_element(By::Css("div[data-section='section-buttons']")).await?;
let child_elem = elem.find_element(By::Tag("button")).await?;

Elements can be clicked using the click() method, and you can send input to an element using the send_keys() method.

Fields

element_id: ElementIdsession: &'a WebDriverSession

Implementations

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

pub fn new(session: &'a WebDriverSession, element_id: ElementId) -> Self[src]

Create a new WebElement struct.

Typically you would not call this directly. WebElement structs are usually constructed by calling one of the find_element*() methods either on WebDriver or another WebElement.

pub async fn rect<'_>(&'_ self) -> WebDriverResult<ElementRect>[src]

Get the bounding rectangle for this WebElement.

pub async fn tag_name<'_>(&'_ self) -> WebDriverResult<String>[src]

Get the tag name for this WebElement.

Example:

let elem = driver.find_element(By::Id("button1")).await?;
assert_eq!(elem.tag_name().await?, "button");

pub async fn class_name<'_>(&'_ self) -> WebDriverResult<String>[src]

Get the class name for this WebElement.

Example:

let elem = driver.find_element(By::Id("button1")).await?;
let class_name = elem.class_name().await?;

pub async fn id<'_>(&'_ self) -> WebDriverResult<String>[src]

Get the id for this WebElement.

Example:

let elem = driver.find_element(By::Id("button1")).await?;
let id = elem.id().await?;

pub async fn text<'_>(&'_ self) -> WebDriverResult<String>[src]

Get the text contents for this WebElement.

Example:

let elem = driver.find_element(By::Id("button-result")).await?;
let text = elem.text().await?;

pub async fn value<'_>(&'_ self) -> WebDriverResult<String>[src]

Convenience method for getting the value attribute of this element.

pub async fn click<'_>(&'_ self) -> WebDriverResult<()>[src]

Click the WebElement.

Example:

let elem = driver.find_element(By::Id("button1")).await?;
elem.click().await?;

pub async fn clear<'_>(&'_ self) -> WebDriverResult<()>[src]

Clear the WebElement contents.

Example:

pub async fn get_property<'_, '_>(
    &'_ self,
    name: &'_ str
) -> WebDriverResult<String>
[src]

Get the specified property.

Example:

let property_value = elem.get_property("checked").await?;
assert_eq!(property_value, "true");

pub async fn get_attribute<'_, '_>(
    &'_ self,
    name: &'_ str
) -> WebDriverResult<String>
[src]

Get the specified attribute.

Example:

pub async fn get_css_property<'_, '_>(
    &'_ self,
    name: &'_ str
) -> WebDriverResult<String>
[src]

Get the specified CSS property.

Example:

let css_color = elem.get_css_property("color").await?;
assert_eq!(css_color, "rgba(0, 0, 0, 1)");

pub async fn is_selected<'_>(&'_ self) -> WebDriverResult<bool>[src]

Return true if the WebElement is currently selected, otherwise false.

pub async fn is_enabled<'_>(&'_ self) -> WebDriverResult<bool>[src]

Return true if the WebElement is currently enabled, otherwise false.

pub async fn find_element<'_>(
    &'_ self,
    by: By<'a>
) -> WebDriverResult<WebElement<'a>>
[src]

Search for a child element of this WebElement using the specified selector.

Example:

let elem = driver.find_element(By::Css("div[data-section='section-buttons']")).await?;
let child_elem = elem.find_element(By::Tag("button")).await?;

pub async fn find_elements<'_>(
    &'_ self,
    by: By<'a>
) -> WebDriverResult<Vec<WebElement<'a>>>
[src]

Search for all child elements of this WebElement that match the specified selector.

Example:

let elem = driver.find_element(By::Css("div[data-section='section-buttons']")).await?;
let child_elems = elem.find_elements(By::Tag("button")).await?;
for child_elem in child_elems {
    assert_eq!(child_elem.tag_name().await?, "button");
}

pub async fn send_keys<S, '_>(&'_ self, keys: S) -> WebDriverResult<()> where
    S: Into<TypingData>, 
[src]

Send the specified input.

Example:

You can specify anything that implements Into<TypingData>. This includes &str and String.

elem.send_keys("selenium").await?;

You can also send special key combinations like this:

elem.send_keys("selenium").await?;
elem.send_keys(Keys::Control + "a").await?;
elem.send_keys(TypingData::from("thirtyfour") + Keys::Enter).await?;

pub async fn screenshot_as_base64<'_>(&'_ self) -> WebDriverResult<String>[src]

Take a screenshot of this WebElement and return it as a base64-encoded String.

pub async fn screenshot_as_png<'_>(&'_ self) -> WebDriverResult<Vec<u8>>[src]

Take a screenshot of this WebElement and return it as PNG bytes.

pub async fn screenshot<'_, '_>(&'_ self, path: &'_ Path) -> WebDriverResult<()>[src]

Take a screenshot of this WebElement and write it to the specified filename.

pub async fn focus<'_>(&'_ self) -> WebDriverResult<()>[src]

Focus this WebElement using JavaScript.

Example:

let elem = driver.find_element(By::Name("input1")).await?;
elem.focus().await?;

pub async fn scroll_into_view<'_>(&'_ self) -> WebDriverResult<()>[src]

Scroll this element into view using JavaScript.

Example:

let elem = driver.find_element(By::Id("button1")).await?;
elem.scroll_into_view().await?;

pub async fn inner_html<'_>(&'_ self) -> WebDriverResult<String>[src]

Get the innerHtml property of this element.

Example:

let elem = driver.find_element(By::XPath(r##"//*[@id="button1"]/.."##)).await?;
let html = elem.inner_html().await?;

pub async fn outer_html<'_>(&'_ self) -> WebDriverResult<String>[src]

Get the outerHtml property of this element.

Example:

let elem = driver.find_element(By::XPath(r##"//*[@id="button1"]/.."##)).await?;
let html = elem.outer_html().await?;

Trait Implementations

impl<'a> Clone for WebElement<'a>[src]

impl<'a> Debug for WebElement<'a>[src]

impl<'a> Display for WebElement<'a>[src]

impl<'a> Serialize for WebElement<'a>[src]

Auto Trait Implementations

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

impl<'a> Send for WebElement<'a>

impl<'a> Sync for WebElement<'a>

impl<'a> Unpin for WebElement<'a>

impl<'a> !UnwindSafe for WebElement<'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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.