Skip to content
This repository was archived by the owner on Feb 2, 2025. It is now read-only.

Commit 997fd06

Browse files
authored
Missing parenthesis
1 parent 1bf756d commit 997fd06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/github/markusbernhardt/seleniumlibrary/keywords/BrowserManagement.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -790,7 +790,7 @@ protected void parseBrowserOptionsChrome(String browserOptions, Capabilities des
790790
chromeOptions.put(key, entry.getValue());
791791
}
792792
((ChromeOptions) desiredCapabilities).setCapability(ChromeOptions.CAPABILITY, chromeOptions);
793-
if (browserOptions.contains("disable-extensions") {
793+
if (browserOptions.contains("disable-extensions")) {
794794
((ChromeOptions) desiredCapabilities).setExperimentalOption("useAutomationExtension", false);
795795
}
796796
} else {

0 commit comments

Comments
 (0)