Skip to content

Commit

Permalink
disable tracing
Browse files Browse the repository at this point in the history
  • Loading branch information
mucsi96 committed Oct 16, 2023
1 parent d6b22da commit 3dcf0b0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public WebDriver getRemoteWebDriver() throws MalformedURLException {
"--disable-gpu", "--no-sandbox", "--disable-dev-shm-usage",
"--window-size=1920,1080", "--remote-allow-origins=*");

RemoteWebDriver driver = new RemoteWebDriver(new URL(apiUri), options);
RemoteWebDriver driver = new RemoteWebDriver(new URL(apiUri), options, false);
driver.setLogLevel(Level.WARNING);
return new Augmenter().augment(driver);
}
Expand Down

0 comments on commit 3dcf0b0

Please sign in to comment.