Selenium Java - Page Object Model
Given this Base Page method, what will be the output if the element is not found within 5 seconds?
public void clickWhenVisible(By locator) {
new WebDriverWait(driver, Duration.ofSeconds(5))
.until(ExpectedConditions.visibilityOfElementLocated(locator))
.click();
}