pub struct DomNode {Show 28 fields
pub node_type: i64,
pub node_name: String,
pub node_value: String,
pub text_value: Option<String>,
pub input_value: Option<String>,
pub input_checked: Option<bool>,
pub option_selected: Option<bool>,
pub backend_node_id: BackendNodeId,
pub child_node_indexes: Option<Vec<i64>>,
pub attributes: Option<Vec<NameValue>>,
pub pseudo_element_indexes: Option<Vec<i64>>,
pub layout_node_index: Option<i64>,
pub document_url: Option<String>,
pub base_url: Option<String>,
pub content_language: Option<String>,
pub document_encoding: Option<String>,
pub public_id: Option<String>,
pub system_id: Option<String>,
pub frame_id: Option<FrameId>,
pub content_document_index: Option<i64>,
pub pseudo_type: Option<PseudoType>,
pub shadow_root_type: Option<ShadowRootType>,
pub is_clickable: Option<bool>,
pub event_listeners: Option<Vec<EventListener>>,
pub current_source_url: Option<String>,
pub origin_url: Option<String>,
pub scroll_offset_x: Option<f64>,
pub scroll_offset_y: Option<f64>,
}
Expand description
A Node in the DOM tree. DOMNode
Fields§
§node_type: i64
Node
’s nodeType.
node_name: String
Node
’s nodeName.
node_value: String
Node
’s nodeValue.
text_value: Option<String>
Only set for textarea elements, contains the text value.
input_value: Option<String>
Only set for input elements, contains the input’s associated text value.
input_checked: Option<bool>
Only set for radio and checkbox input elements, indicates if the element has been checked
option_selected: Option<bool>
Only set for option elements, indicates if the element has been selected
backend_node_id: BackendNodeId
Node
’s id, corresponds to DOM.Node.backendNodeId.
child_node_indexes: Option<Vec<i64>>
The indexes of the node’s child nodes in the domNodes
array returned by getSnapshot
, if
any.
attributes: Option<Vec<NameValue>>
Attributes of an Element
node.
pseudo_element_indexes: Option<Vec<i64>>
Indexes of pseudo elements associated with this node in the domNodes
array returned by
getSnapshot
, if any.
layout_node_index: Option<i64>
The index of the node’s related layout tree node in the layoutTreeNodes
array returned by
getSnapshot
, if any.
document_url: Option<String>
Document URL that Document
or FrameOwner
node points to.
base_url: Option<String>
Base URL that Document
or FrameOwner
node uses for URL completion.
content_language: Option<String>
Only set for documents, contains the document’s content language.
document_encoding: Option<String>
Only set for documents, contains the document’s character set encoding.
public_id: Option<String>
DocumentType
node’s publicId.
system_id: Option<String>
DocumentType
node’s systemId.
frame_id: Option<FrameId>
Frame ID for frame owner elements and also for the document node.
content_document_index: Option<i64>
The index of a frame owner element’s content document in the domNodes
array returned by
getSnapshot
, if any.
pseudo_type: Option<PseudoType>
Type of a pseudo element node.
shadow_root_type: Option<ShadowRootType>
Shadow root type.
is_clickable: Option<bool>
Whether this DOM node responds to mouse clicks. This includes nodes that have had click event listeners attached via JavaScript as well as anchor tags that naturally navigate when clicked.
event_listeners: Option<Vec<EventListener>>
Details of the node’s event listeners, if any.
current_source_url: Option<String>
The selected url for nodes with a srcset attribute.
origin_url: Option<String>
The url of the script (if any) that generates this node.
scroll_offset_x: Option<f64>
Scroll offsets, set when this node is a Document.
scroll_offset_y: Option<f64>
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for DomNode
impl<'de> Deserialize<'de> for DomNode
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<DomNode, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<DomNode, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Source§impl Serialize for DomNode
impl Serialize for DomNode
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
impl StructuralPartialEq for DomNode
Auto Trait Implementations§
impl Freeze for DomNode
impl RefUnwindSafe for DomNode
impl Send for DomNode
impl Sync for DomNode
impl Unpin for DomNode
impl UnwindSafe for DomNode
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more