viewpoint-core 0.4.3

High-level browser automation API for Viewpoint
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Frame management and navigation.
//!
//! Frames represent separate browsing contexts within a page, typically
//! created by `<iframe>` elements. Each frame has its own DOM, JavaScript
//! context, and URL.

mod aria;
mod content;
mod core;
mod execution_context;
mod navigation;
mod tree;

pub use core::Frame;
pub(crate) use execution_context::ExecutionContextRegistry;