diff --git a/rust/src/lib.rs b/rust/src/lib.rs index ae050adc125c8..751f092029e6d 100644 --- a/rust/src/lib.rs +++ b/rust/src/lib.rs @@ -750,7 +750,10 @@ pub trait SeleniumManager { // Download browser if necessary match self.download_browser_if_necessary(&original_browser_version) { Ok(_) => {} - Err(err) => self.check_error_with_driver_in_path(&use_driver_in_path, err)?, + Err(err) => { + self.set_fallback_driver_from_cache(false); + self.check_error_with_driver_in_path(&use_driver_in_path, err)? + } } // With the discovered browser version, discover the proper driver version using online endpoints