()
| 23 | |
| 24 | #[tokio::test] |
| 25 | async fn wrong_proxy_test() { |
| 26 | let mut cmd = get_selenium_manager(); |
| 27 | let result = cmd |
| 28 | .args([ |
| 29 | "--debug", |
| 30 | "--browser", |
| 31 | "chrome", |
| 32 | "--proxy", |
| 33 | "http://localhost:12345", |
| 34 | ]) |
| 35 | .assert() |
| 36 | .try_success(); |
| 37 | |
| 38 | assert_output(&mut cmd, result, vec!["in PATH"], DATAERR); |
| 39 | } |
| 40 | #[test] |
| 41 | fn wrong_protocol_proxy_test() { |
| 42 | let mut cmd = get_selenium_manager(); |
nothing calls this directly
no test coverage detected