ParkGyeongTae commented on code in PR #4941: URL: https://github.com/apache/zeppelin/pull/4941#discussion_r2257213961
########## zeppelin-integration/src/test/java/org/apache/zeppelin/WebDriverManager.java: ########## @@ -133,17 +133,17 @@ private WebDriver constructWebDriver(int port) { long start = System.currentTimeMillis(); boolean loaded = false; driver.manage().timeouts() - .implicitlyWait(Duration.ofSeconds(AbstractZeppelinIT.MAX_IMPLICIT_WAIT)); + .implicitlyWait(Duration.ofSeconds(AbstractZeppelinIT.MAX_IMPLICIT_WAIT)); driver.get(url); while (System.currentTimeMillis() - start < 60 * 1000) { // wait for page load try { - (new WebDriverWait(driver, Duration.ofSeconds(30))).until(new ExpectedCondition<Boolean>() { + (new WebDriverWait(driver, Duration.ofSeconds(60))).until(new ExpectedCondition<Boolean>() { @Override public Boolean apply(WebDriver d) { return d.findElement(By.xpath("//i[@uib-tooltip='WebSocket Connected']")) - .isDisplayed(); + .isDisplayed(); Review Comment: I’ve restored the indentation to how it was originally. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: reviews-unsubscr...@zeppelin.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org