(&self)
| 1094 | } |
| 1095 | |
| 1096 | fn find_best_browser_from_cache(&self) -> Result<Option<PathBuf>, Error> { |
| 1097 | let cache_path = self.get_cache_path()?.unwrap_or_default(); |
| 1098 | find_latest_from_cache(&cache_path, |entry| self.is_browser(entry)) |
| 1099 | } |
| 1100 | |
| 1101 | fn find_best_driver_from_cache(&self) -> Result<Option<PathBuf>, Error> { |
| 1102 | let cache_path = self.get_cache_path()?.unwrap_or_default(); |
no test coverage detected