1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
//! Browser entities module.
//!
//! This module provides the core browser automation types:
//!
//! | Type | Description |
//! |------|-------------|
//! | [`Window`] | Browser window (owns Firefox process, references shared pool) |
//! | [`Tab`] | Browser tab (frame context) |
//! | [`Element`] | DOM element reference |
//! | [`Key`] | Keyboard key constants |
//! | [`By`] | Element locator strategies |
//!
//! # Example
//!
//! ```no_run
//! use firefox_webdriver::{Driver, Result, Key, By};
//!
//! # async fn example() -> Result<()> {
//! let driver = Driver::builder()
//! .binary("/usr/bin/firefox")
//! .extension("./extension")
//! .build()
//! .await?;
//!
//! let window = driver.window().headless().spawn().await?;
//! let tab = window.tab();
//!
//! tab.goto("https://example.com").await?;
//!
//! // Find with By selector
//! let element = tab.find_element(By::tag("h1")).await?;
//!
//! // Find by text
//! let btn = tab.find_element(By::text("Submit")).await?;
//!
//! // Press keys
//! element.press(Key::Enter).await?;
//! # Ok(())
//! # }
//! ```
// ============================================================================
// Submodules
// ============================================================================
/// DOM element interaction.
/// Keyboard key definitions.
/// Network interception types.
/// Proxy configuration types.
/// Element locator strategies.
/// Browser tab automation.
/// Browser window management.
// ============================================================================
// Re-exports
// ============================================================================
pub use Element;
pub use Key;
pub use ;
pub use ;
pub use By;
pub use ;
pub use ;
// Re-export Cookie from protocol for convenience
pub use crateCookie;