I am learning Java Maven Selenium. I want something like this in Selenium using implicitlyWait.
implicitlyWait
Implement WebDriverWait
public void waitForElement(WebDriver driver, WebElement element) { WebDriverWait wait = new WebDriverWait(driver,5); wait.until(ExpectedConditions.visibilityOf(element)); }