thirtyfour 0.37.0

Thirtyfour is a Selenium / WebDriver library for Rust, for automated website UI testing. Tested on Chrome and Firefox, but any webdriver-capable browser should work.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Re-exports of typed CDP events from across [`crate::cdp::domains`],
//! grouped here so a single `use thirtyfour::cdp::events::*` covers the
//! common cases.
//!
//! Each event implements [`crate::cdp::CdpEvent`] and is the typed
//! payload for [`crate::cdp::CdpSession::subscribe`].
//!
//! Available with the `cdp-events` feature.

pub use crate::cdp::domains::fetch::RequestPaused;
pub use crate::cdp::domains::log::EntryAdded as LogEntryAdded;
pub use crate::cdp::domains::network::{
    LoadingFailed, LoadingFinished, RequestWillBeSent, ResponseReceived,
};
pub use crate::cdp::domains::page::{FrameNavigated, LifecycleEvent, LoadEventFired};
pub use crate::cdp::domains::runtime::{ConsoleApiCalled, ExceptionThrown};
pub use crate::cdp::domains::target::{AttachedToTarget, DetachedFromTarget};