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

Function shell_output_test

rust/tests/output_tests.rs:46–55  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

44
45#[test]
46fn shell_output_test() {
47 let mut cmd = get_selenium_manager();
48 cmd.args(["--browser", "chrome", "--output", "shell"])
49 .assert()
50 .success()
51 .code(0);
52
53 let stdout = get_stdout(&mut cmd);
54 assert!(stdout.contains(DRIVER_PATH));
55}
56
57#[test]
58fn mixed_output_test() {

Callers

nothing calls this directly

Calls 5

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

Tested by

no test coverage detected