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 6477870 commit 4db2c56Copy full SHA for 4db2c56
java/src/org/openqa/selenium/manager/SeleniumManager.java
@@ -200,7 +200,8 @@ private synchronized Path getBinary() {
200
} else if (current.is(MAC)) {
201
folder = "macos";
202
} else if (current.is(LINUX)) {
203
- if (System.getProperty("os.arch").contains("arm")) {
+ if (System.getProperty("os.arch").contains("arm")
204
+ || System.getProperty("os.arch").contains("aarch64")) {
205
throw new WebDriverException("Linux ARM is not supported by Selenium Manager");
206
} else {
207
folder = "linux";
0 commit comments