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

Function stable_browser_test

rust/tests/stable_browser_tests.rs:28–45  ·  view source on GitHub ↗
(#[case] browser_name: String)

Source from the content-addressed store, hash-verified

26#[case("firefox")]
27#[case("edge")]
28fn stable_browser_test(#[case] browser_name: String) {
29 let mut cmd = get_selenium_manager();
30 cmd.args([
31 "--browser",
32 &browser_name,
33 "--browser-version",
34 "stable",
35 "--output",
36 "json",
37 "--debug",
38 ])
39 .assert()
40 .success()
41 .code(0);
42
43 assert_driver(&mut cmd);
44 assert_browser(&mut cmd);
45}

Callers

nothing calls this directly

Calls 6

get_selenium_managerFunction · 0.85
assert_driverFunction · 0.85
assert_browserFunction · 0.85
codeMethod · 0.80
argsMethod · 0.80
successMethod · 0.45

Tested by

no test coverage detected