mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-10 15:19:09 +02:00
Closes: https://bugs.gentoo.org/930568 Signed-off-by: Joonas Niilola <juippis@gentoo.org>
17 lines
898 B
Diff
17 lines
898 B
Diff
diff --git a/src/capabilities.rs b/src/capabilities.rs
|
|
--- a/src/capabilities.rs
|
|
+++ b/src/capabilities.rs
|
|
@@ -226,10 +226,7 @@ impl<'a> BrowserCapabilities for FirefoxCapabilities<'a> {
|
|
if !data.contains_key("androidPackage")
|
|
&& self.version(Some(Path::new(binary))).is_err()
|
|
{
|
|
- return Err(WebDriverError::new(
|
|
- ErrorStatus::InvalidArgument,
|
|
- format!("{} is not a Firefox executable", &**key),
|
|
- ));
|
|
+ warn!("{} is not a Mozilla Firefox executable", &**key);
|
|
}
|
|
} else {
|
|
return Err(WebDriverError::new(
|
|
--
|
|
2.40.1
|