Send a browser-level CDP command.
(&mut self, method: &str, params: Value)
| 453 | |
| 454 | /// Send a browser-level CDP command. |
| 455 | pub async fn send(&mut self, method: &str, params: Value) -> Result<Value> { |
| 456 | self.send_raw(method, params, None).await |
| 457 | } |
| 458 | |
| 459 | /// Send a page-level CDP command (with session ID from attach_to_target). |
| 460 | pub async fn send_to_target( |
no test coverage detected