We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32a61d3 commit 66e8d16Copy full SHA for 66e8d16
src/helper/develop.rs
@@ -16,7 +16,10 @@ async fn task(mut counter: i32) -> Result<()> {
16
let port = cli::manager::enable_webrtc_task_test().unwrap();
17
let driver = WebDriver::new(&format!("http://localhost:{}", port), caps)
18
.await
19
- .unwrap_or_else(|_| std::process::exit(-1));
+ .unwrap_or_else(|_| {
20
+ error!("Failed to connect with WebDriver.");
21
+ std::process::exit(-1)
22
+ });
23
24
driver
25
.goto("http://0.0.0.0:6020/webrtc/index.html")
0 commit comments