Does the first line alone make webdriver wait for 10 seconds? or do I need to have both?
WebDriverWait wait = new WebDriverWait(firefoxDriver,10);
wait.until(ExpectedConditions.visibilityOfElementLocated(By.xpath(xpathID)));
I'm confused about what statement makes driver wait?Is this statement enough?
WebDriverWait wait = new WebDriverWait(firefoxDriver,10);