thirtyfour/extensions/cdp/devtools.rs
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 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246
use super::ChromeCommand;
use super::NetworkConditions;
use crate::error::WebDriverResult;
use crate::session::handle::SessionHandle;
use serde_json::{json, Value};
/// The ChromeDevTools struct allows you to interact with Chromium-based browsers via
/// the Chrome Devtools Protocol (CDP).
///
/// You can find documentation for the available commands here:
/// [https://chromedevtools.github.io/devtools-protocol/](https://chromedevtools.github.io/devtools-protocol/])
///
/// # Example
/// ```no_run
/// # use thirtyfour::prelude::*;
/// # use thirtyfour::support::block_on;
/// # use thirtyfour::extensions::cdp::ChromeDevTools;
/// #
/// # fn main() -> WebDriverResult<()> {
/// # block_on(async {
/// let caps = DesiredCapabilities::chrome();
/// let driver = WebDriver::new("http://localhost:4444", caps).await?;
///
/// // Create a ChromeDevTools struct like this.
/// let dev_tools = ChromeDevTools::new(driver.handle.clone());
/// dev_tools.execute_cdp("Network.clearBrowserCache").await?;
/// # driver.quit().await?;
/// # Ok(())
/// # })
/// # }
/// ```
#[derive(Clone)]
pub struct ChromeDevTools {
pub handle: SessionHandle,
}
impl ChromeDevTools {
/// Create a new ChromeDevTools struct.
///
/// # Example:
/// ```no_run
/// # use thirtyfour::prelude::*;
/// # use thirtyfour::support::block_on;
/// use thirtyfour::extensions::cdp::ChromeDevTools;
/// #
/// # fn main() -> WebDriverResult<()> {
/// block_on(async {
/// # let caps = DesiredCapabilities::chrome();
/// # let driver = WebDriver::new("http://localhost:4444", caps).await?;
/// let dev_tools = ChromeDevTools::new(driver.handle.clone());
/// # driver.quit().await?;
/// # Ok(())
/// # })
/// # }
/// ```
pub fn new(handle: SessionHandle) -> Self {
Self {
handle,
}
}
/// Launch the Chrome app with the specified id.
pub async fn launch_app(&self, app_id: &str) -> WebDriverResult<()> {
self.handle.client.issue_cmd(ChromeCommand::LaunchApp(app_id.to_string())).await?;
Ok(())
}
/// Get the current network conditions. You must set the conditions first.
///
/// # Example:
/// ```no_run
/// # use thirtyfour::prelude::*;
/// # use thirtyfour::support::block_on;
/// use thirtyfour::extensions::cdp::{ChromeDevTools, NetworkConditions};
/// #
/// # fn main() -> WebDriverResult<()> {
/// # block_on(async {
/// # let caps = DesiredCapabilities::chrome();
/// # let driver = WebDriver::new("http://localhost:4444", caps).await?;
/// // Create ChromeDevTools struct.
/// let dev_tools = ChromeDevTools::new(driver.handle.clone());
///
/// // First we need to set the network conditions.
/// let mut conditions = NetworkConditions::new();
/// conditions.download_throughput = 20;
/// dev_tools.set_network_conditions(&conditions).await?;
///
/// // Now we can get the network conditions.
/// let conditions_out = dev_tools.get_network_conditions().await?;
/// assert_eq!(conditions_out.download_throughput, conditions.download_throughput);
/// # driver.quit().await?;
/// # Ok(())
/// # })
/// # }
/// ```
pub async fn get_network_conditions(&self) -> WebDriverResult<NetworkConditions> {
let v = self.handle.client.issue_cmd(ChromeCommand::GetNetworkConditions).await?;
let conditions: NetworkConditions = serde_json::from_value(v)?;
Ok(conditions)
}
/// Set the network conditions.
///
/// # Example:
/// ```no_run
/// # use thirtyfour::prelude::*;
/// # use thirtyfour::support::block_on;
/// use thirtyfour::extensions::cdp::{ChromeDevTools, NetworkConditions};
///
/// # fn main() -> WebDriverResult<()> {
/// # block_on(async {
/// # let caps = DesiredCapabilities::chrome();
/// # let driver = WebDriver::new("http://localhost:4444", caps).await?;
/// // Create ChromeDevTools struct.
/// let dev_tools = ChromeDevTools::new(driver.handle.clone());
///
/// // Now we can set the network conditions. You do not need to set all parameters.
/// let mut conditions = NetworkConditions::new();
/// conditions.download_throughput = 20;
/// conditions.upload_throughput = 10;
/// conditions.offline = false;
/// conditions.latency = 200;
///
/// dev_tools.set_network_conditions(&conditions).await?;
/// # let conditions_out = dev_tools.get_network_conditions().await?;
/// # assert_eq!(conditions_out.download_throughput, conditions.download_throughput);
/// # assert_eq!(conditions_out.upload_throughput, conditions.upload_throughput);
/// # assert_eq!(conditions_out.latency, conditions.latency);
/// # assert_eq!(conditions_out.offline, conditions.offline);
/// # driver.quit().await?;
/// # Ok(())
/// # })
/// # }
/// ```
pub async fn set_network_conditions(
&self,
conditions: &NetworkConditions,
) -> WebDriverResult<()> {
self.handle
.client
.issue_cmd(ChromeCommand::SetNetworkConditions(conditions.clone()))
.await?;
Ok(())
}
/// Execute the specified command without parameters.
/// For commands that require parameters, use `execute_cdp_with_params()` instead.
///
/// You can find documentation for the available commands here:
/// [https://chromedevtools.github.io/devtools-protocol/](https://chromedevtools.github.io/devtools-protocol/])
///
/// # Example:
/// ```no_run
/// # use thirtyfour::prelude::*;
/// # use thirtyfour::support::block_on;
/// use thirtyfour::extensions::cdp::ChromeDevTools;
///
/// #
/// # fn main() -> WebDriverResult<()> {
/// # block_on(async {
/// # let caps = DesiredCapabilities::chrome();
/// # let driver = WebDriver::new("http://localhost:4444", caps).await?;
/// let dev_tools = ChromeDevTools::new(driver.handle.clone());
/// dev_tools.execute_cdp("Network.clearBrowserCache").await?;
///
/// // execute_cdp() can also return values as well.
/// let version_info = dev_tools.execute_cdp("Browser.getVersion").await?;
/// let user_agent = version_info["userAgent"].as_str().unwrap();
/// # driver.quit().await?;
/// # Ok(())
/// # })
/// # }
/// ```
pub async fn execute_cdp(&self, cmd: &str) -> WebDriverResult<Value> {
self.execute_cdp_with_params(cmd, json!({})).await
}
/// Execute the specified command with the specified parameter(s).
///
/// You can find documentation for the available commands here:
/// [https://chromedevtools.github.io/devtools-protocol/](https://chromedevtools.github.io/devtools-protocol/])
///
/// # Example:
/// ```no_run
/// # use thirtyfour::prelude::*;
/// # use thirtyfour::support::block_on;
/// use thirtyfour::extensions::cdp::ChromeDevTools;
/// use serde_json::json;
/// #
/// # fn main() -> WebDriverResult<()> {
/// # block_on(async {
/// # let caps = DesiredCapabilities::chrome();
/// # let driver = WebDriver::new("http://localhost:4444", caps).await?;
/// let dev_tools = ChromeDevTools::new(driver.handle.clone());
/// dev_tools.execute_cdp_with_params("Network.setCacheDisabled", json!({"cacheDisabled": true})).await?;
/// # driver.quit().await?;
/// # Ok(())
/// # })
/// # }
/// ```
pub async fn execute_cdp_with_params(
&self,
cmd: &str,
cmd_args: Value,
) -> WebDriverResult<Value> {
let v = self
.handle
.client
.issue_cmd(ChromeCommand::ExecuteCdpCommand(cmd.to_string(), cmd_args))
.await?;
Ok(v)
}
/// Get the list of sinks available for cast.
pub async fn get_sinks(&self) -> WebDriverResult<Value> {
let v = self.handle.client.issue_cmd(ChromeCommand::GetSinks).await?;
Ok(v)
}
/// Get the issue message for any issue in a cast session.
pub async fn get_issue_message(&self) -> WebDriverResult<Value> {
let v = self.handle.client.issue_cmd(ChromeCommand::GetIssueMessage).await?;
Ok(v)
}
/// Set the specified sink as the cast session receiver target.
pub async fn set_sink_to_use(&self, sink_name: &str) -> WebDriverResult<()> {
self.handle.client.issue_cmd(ChromeCommand::SetSinkToUse(sink_name.to_string())).await?;
Ok(())
}
/// Start a tab mirroring session on the specified receiver target.
pub async fn start_tab_mirroring(&self, sink_name: &str) -> WebDriverResult<()> {
self.handle
.client
.issue_cmd(ChromeCommand::StartTabMirroring(sink_name.to_string()))
.await?;
Ok(())
}
/// Stop the existing cast session on the specified receiver target.
pub async fn stop_casting(&self, sink_name: &str) -> WebDriverResult<()> {
self.handle.client.issue_cmd(ChromeCommand::StopCasting(sink_name.to_string())).await?;
Ok(())
}
}