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
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
//! Selenium client for working with W3C-compatible WebDriver implmentations.
//!
//! **NOTE:** This project is still WIP and not yet ready for production.
//!
//! The API is roughly modeled after the python selenium library.
//!
//! Synchronous and asynchronous APIs are provided (see examples below).
//!
//! The following examples assume you have a selenium server running
//! at localhost:4444.
//!
//! i.e.
//!
//! ```ignore
//! java -jar selenium-server-standalone-3.141.59.jar
//! ```
//!
//! ### Async example:
//!
//! ```rust
//! use std::thread;
//! use std::time::Duration;
//! use thirtyfour::error::WebDriverResult;
//! use thirtyfour::{By, WebDriver, common::keys::TypingData};
//! use tokio;
//!
//! #[tokio::main]
//! async fn main() {
//!     webtest().await.expect("Something went wrong");
//! }
//!
//! async fn webtest() -> WebDriverResult<()> {
//!     let caps = serde_json::json!({
//!         "browserName": "chrome",
//!         "version": "",
//!         "platform": "any"
//!     });
//!
//!     let driver = WebDriver::new("http://localhost:4444/wd/hub", caps).await?;
//!
//!     // Navigate to https://wikipedia.org.
//!     driver.get("https://wikipedia.org").await?;
//!     let elem_form = driver.find_element(By::Id("search-form")).await?;
//!
//!     // Find element from element.
//!     let elem_text = elem_form.find_element(By::Id("searchInput")).await?;
//!
//!     // Type in the search terms.
//!     elem_text.send_keys(TypingData::from("selenium")).await?;
//!
//!     // Click the search button.
//!     let elem_button = elem_form.find_element(By::Css("button[type='submit']")).await?;
//!     elem_button.click().await?;
//!
//!     // Look for header to implicitly wait for the page to load.
//!     driver.find_element(By::ClassName("firstHeading")).await?;
//!     assert_eq!(driver.title().await?, "Selenium - Wikipedia");
//!
//!     Ok(())
//! }
//! ```
//!
//! ### Sync example:
//!
//! ```rust
//! use std::thread;
//! use std::time::Duration;
//! use thirtyfour::error::WebDriverResult;
//! use thirtyfour::{By, sync::WebDriver, common::keys::TypingData};
//!
//! fn main() {
//!     webtest().expect("Something went wrong");
//! }
//!
//! fn webtest() -> WebDriverResult<()> {
//!     let caps = serde_json::json!({
//!         "browserName": "chrome",
//!         "version": "",
//!         "platform": "any"
//!     });
//!
//!     let driver = WebDriver::new("http://localhost:4444/wd/hub", caps)?;
//!
//!     // Navigate to https://wikipedia.org.
//!     driver.get("https://wikipedia.org")?;
//!     let elem_form = driver.find_element(By::Id("search-form"))?;
//!
//!     // Find element from element.
//!     let elem_text = elem_form.find_element(By::Id("searchInput"))?;
//!
//!     // Type in the search terms.
//!     elem_text.send_keys(TypingData::from("selenium"))?;
//!
//!     // Click the search button.
//!     let elem_button = elem_form.find_element(By::Css("button[type='submit']"))?;
//!     elem_button.click()?;
//!
//!     // Look for header to implicitly wait for the page to load.
//!     driver.find_element(By::ClassName("firstHeading"))?;
//!     assert_eq!(driver.title()?, "Selenium - Wikipedia");
//!
//!     Ok(())
//! }
//! ```
pub use common::command::By;
pub use common::cookie::Cookie;
pub use common::types::*;
pub use connection_async::*;
pub use webdriver::WebDriver;
pub use webelement::WebElement;

pub mod action_chain;
mod connection_async;
mod webdriver;
mod webelement;

pub mod common {
    pub mod action;
    pub mod capabilities;
    pub mod command;
    pub mod connection_common;
    pub mod cookie;
    pub mod keys;
    pub mod types;
}
pub mod sync {
    pub use connection_sync::*;
    pub use webdriver::WebDriver;
    pub use webelement::WebElement;

    pub mod action_chain;
    mod connection_sync;
    mod webdriver;
    mod webelement;
}

pub mod error;