()
| 64 | |
| 65 | #[test] |
| 66 | fn wrong_port_proxy_test() { |
| 67 | let mut cmd = get_selenium_manager(); |
| 68 | let result = cmd |
| 69 | .args([ |
| 70 | "--browser", |
| 71 | if is_linux_arm64() { |
| 72 | "firefox" |
| 73 | } else { |
| 74 | "chrome" |
| 75 | }, |
| 76 | "--proxy", |
| 77 | "https:://localhost:1234567", |
| 78 | ]) |
| 79 | .assert() |
| 80 | .try_success(); |
| 81 | |
| 82 | assert_output(&mut cmd, result, vec!["There was an error"], DATAERR); |
| 83 | } |
nothing calls this directly
no test coverage detected