pub struct Element {
    pub remote_object_id: RemoteObjectId,
    pub backend_node_id: BackendNodeId,
    pub node_id: NodeId,
    /* private fields */
}
Expand description

Represents a DOM Element.

Fields§

§remote_object_id: RemoteObjectId

The Unique object identifier

§backend_node_id: BackendNodeId

Identifier of the backend node.

§node_id: NodeId

The identifier of the node this element represents.

Implementations§

source§

impl Element

source

pub async fn find_element(&self, selector: impl Into<String>) -> Result<Self>

Returns the first element in the document which matches the given CSS selector.

source

pub async fn find_elements( &self, selector: impl Into<String> ) -> Result<Vec<Element>>

Return all Elements in the document that match the given selector

source

pub async fn bounding_box(&self) -> Result<BoundingBox>

Returns the bounding box of the element (relative to the main frame)

source

pub async fn clickable_point(&self) -> Result<Point>

Returns the best Point of this node to execute a click on.

source

pub async fn call_js_fn( &self, function_declaration: impl Into<String>, await_promise: bool ) -> Result<CallFunctionOnReturns>

Submits a javascript function to the page and returns the evaluated result

Example get the element as JSON object
    let js_fn = "function() { return this; }";
    let element_json = element.call_js_fn(js_fn, false).await?;
Execute an async javascript function
    let js_fn = "async function() { return this; }";
    let element_json = element.call_js_fn(js_fn, true).await?;
source

pub async fn json_value(&self) -> Result<Value>

Returns a JSON representation of this element.

source

pub async fn focus(&self) -> Result<&Self>

Calls focus on the element.

source

pub async fn hover(&self) -> Result<&Self>

Scrolls the element into view and uses a mouse event to move the mouse over the center of this element.

source

pub async fn scroll_into_view(&self) -> Result<&Self>

Scrolls the element into view.

Fails if the element’s node is not a HTML element or is detached from the document

source

pub async fn click(&self) -> Result<&Self>

This focuses the element by click on it

Bear in mind that if click() triggers a navigation this element may be not exist anymore.

source

pub async fn type_str(&self, input: impl AsRef<str>) -> Result<&Self>

Type the input

Example type text into an input element
    let element = page.find_element("input#searchInput").await?;
    element.click().await?.type_str("this goes into the input field").await?;
source

pub async fn press_key(&self, key: impl AsRef<str>) -> Result<&Self>

Presses the key.

Example type text into an input element and hit enter
    let element = page.find_element("input#searchInput").await?;
    element.click().await?.type_str("this goes into the input field").await?
         .press_key("Enter").await?;
source

pub async fn description(&self) -> Result<Node>

The description of the element’s node

source

pub async fn attributes(&self) -> Result<Vec<String>>

Attributes of the Element node in the form of flat array `[name1, value1, name2, value2]

source

pub async fn attribute( &self, attribute: impl AsRef<str> ) -> Result<Option<String>>

Returns the value of the element’s attribute

source

pub async fn iter_attributes( &self ) -> Result<impl Stream<Item = (String, Result<Option<String>>)> + '_>

A Stream over all attributes and their values

source

pub async fn inner_text(&self) -> Result<Option<String>>

The inner text of this element.

source

pub async fn inner_html(&self) -> Result<Option<String>>

The inner HTML of this element.

source

pub async fn outer_html(&self) -> Result<Option<String>>

The outer HTML of this element.

source

pub async fn string_property( &self, property: impl AsRef<str> ) -> Result<Option<String>>

Returns the string property of the element.

If the property is an empty String, None is returned.

source

pub async fn property(&self, property: impl AsRef<str>) -> Result<Option<Value>>

Returns the javascript property of this element where property is the name of the requested property of this element.

See also Element::inner_html.

source

pub async fn properties(&self) -> Result<HashMap<String, PropertyDescriptor>>

Returns a map with all PropertyDescriptors of this element keyed by their names

source

pub async fn screenshot( &self, format: CaptureScreenshotFormat ) -> Result<Vec<u8>>

Scrolls the element into and takes a screenshot of it

source

pub async fn save_screenshot( &self, format: CaptureScreenshotFormat, output: impl AsRef<Path> ) -> Result<Vec<u8>>

Save a screenshot of the element and write it to output

Trait Implementations§

source§

impl Debug for Element

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more