Skip to content
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions java/src/org/openqa/selenium/manager/SeleniumManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,11 @@ private synchronized Path getBinary() {
} else if (current.is(MAC)) {
folder = "macos";
} else if (current.is(LINUX)) {
if (System.getProperty("os.arch").contains("arm")) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Create an issue and we’d be happy to take a look - commenting here will cause us to miss or forget @mkurz

Copy link
Contributor

@mkurz mkurz Oct 4, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I referenced the PR I created. I just wanted to make the author of the PR aware that the check was not enough. (Also for readers who stumple on this issue later)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, I see - I didn't understand the link clearly on my phone. Thank you!

throw new WebDriverException("Linux ARM is not supported by Selenium Manager");
} else {
folder = "linux";
}
} else if (current.is(UNIX)) {
LOG.warning(
String.format(
Expand Down