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 013443d commit f064ecaCopy full SHA for f064eca
rust/src/firefox.rs
@@ -572,7 +572,11 @@ impl SeleniumManager for FirefoxManager {
572
} else {
573
// Linux
574
artifact_name = "firefox-";
575
- artifact_extension = "tar.bz2";
+ if major_browser_version < 135 {
576
+ artifact_extension = "tar.bz2";
577
+ } else {
578
+ artifact_extension = "tar.xz";
579
+ }
580
if X32.is(arch) {
581
platform_label = "linux-i686";
582
} else if self.is_nightly(browser_version) {
0 commit comments