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 71ccb89 commit f37708bCopy full SHA for f37708b
rust/src/chrome.rs
@@ -302,7 +302,9 @@ impl SeleniumManager for ChromeManager {
302
{
303
// For discovering the latest driver version, the CfT endpoints are also used
304
self.request_latest_driver_version_from_online()?
305
- } else if !major_browser_version.is_empty() && major_browser_version_int < 115 {
+ } else if !major_browser_version.is_empty()
306
+ && major_browser_version_int < MIN_CHROMEDRIVER_VERSION_CFT
307
+ {
308
// For old versions (chromedriver 114-), the traditional method should work:
309
// https://chromedriver.chromium.org/downloads
310
self.request_driver_version_from_latest(
0 commit comments