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 f843e8b commit e2640f1Copy full SHA for e2640f1
java/src/org/openqa/selenium/manager/SeleniumManager.java
@@ -180,7 +180,8 @@ private synchronized Path getBinary() {
180
throw new WebDriverException("Unable to obtain Selenium Manager Binary", e);
181
}
182
} else if (!Files.exists(binary)) {
183
- throw new WebDriverException(String.format("Unable to obtain Selenium Manager Binary at: %s", binary));
+ throw new WebDriverException(
184
+ String.format("Unable to obtain Selenium Manager Binary at: %s", binary));
185
186
binary.toFile().setExecutable(true);
187
0 commit comments