We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a27fe7 commit 9504dcdCopy full SHA for 9504dcd
rust/src/lib.rs
@@ -750,7 +750,10 @@ pub trait SeleniumManager {
750
// Download browser if necessary
751
match self.download_browser_if_necessary(&original_browser_version) {
752
Ok(_) => {}
753
- Err(err) => self.check_error_with_driver_in_path(&use_driver_in_path, err)?,
+ Err(err) => {
754
+ self.set_fallback_driver_from_cache(false);
755
+ self.check_error_with_driver_in_path(&use_driver_in_path, err)?
756
+ }
757
}
758
759
// With the discovered browser version, discover the proper driver version using online endpoints
0 commit comments