1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
use ;
/// The chromedriver binary can be passed one of these log-levels.
///
/// Defaults to `Info`. This is enough to get the "started on port ..." line on stdout.
///
/// For example, if launching chromedriver with std/tokio `Process`, do this:
/// ```no_run
/// let mut command = std::process::Command::new("chromedriver");
/// let loglevel = chrome_for_testing::chromedriver::LogLevel::All;
/// command.arg(format!("--log-level={loglevel}"));
/// ```