()
| 39 | } |
| 40 | #[test] |
| 41 | fn wrong_protocol_proxy_test() { |
| 42 | let mut cmd = get_selenium_manager(); |
| 43 | let result = cmd |
| 44 | .args(["--browser", "chrome", "--proxy", "wrong:://proxy"]) |
| 45 | .assert() |
| 46 | .try_success(); |
| 47 | |
| 48 | assert_output(&mut cmd, result, vec!["There was an error"], DATAERR); |
| 49 | } |
| 50 | |
| 51 | #[test] |
| 52 | fn wrong_port_proxy_test() { |
nothing calls this directly
no test coverage detected