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 bd6a71e commit fb40ce3Copy full SHA for fb40ce3
rust/src/lib.rs
@@ -212,11 +212,12 @@ pub trait SeleniumManager {
212
.trace(format!("Checking {} in PATH", browser_name));
213
let browser_in_path = self.find_browser_in_path();
214
if let Some(path) = &browser_in_path {
215
+ let canon_browser_path = self.canonicalize_path(path.clone());
216
self.get_logger().debug(format!(
217
"Found {} in PATH: {}",
- browser_name,
218
- path.display()
+ browser_name, &canon_browser_path
219
));
220
+ self.set_browser_path(canon_browser_path);
221
} else {
222
self.get_logger()
223
.debug(format!("{} not found in PATH", browser_name));
0 commit comments