MCPcopy Create free account
hub / github.com/SeleniumHQ/selenium / browser_path_test

Function browser_path_test

rust/tests/browser_tests.rs:138–150  ·  view source on GitHub ↗
(#[case] os: String, #[case] browser: String, #[case] browser_path: String)

Source from the content-addressed store, hash-verified

136 r"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome"
137)]
138fn browser_path_test(#[case] os: String, #[case] browser: String, #[case] browser_path: String) {
139 if OS.eq(&os) && Path::new(&browser_path).exists() {
140 let mut cmd = get_selenium_manager();
141 cmd.args(["--browser", &browser, "--browser-path", &browser_path])
142 .assert()
143 .success()
144 .code(0);
145
146 let stdout = get_stdout(&mut cmd);
147
148 assert!(!stdout.contains("WARN"));
149 }
150}
151
152#[test]
153fn invalid_browser_path_test() {

Callers

nothing calls this directly

Calls 6

get_selenium_managerFunction · 0.85
get_stdoutFunction · 0.85
codeMethod · 0.80
argsMethod · 0.80
existsMethod · 0.45
successMethod · 0.45

Tested by

no test coverage detected