Wait Strategies - denhoefel/EcommerceSeleniumProject GitHub Wiki
The Wait Strategies are added inside the BaseTests class.
ImplicitlyWait - FOR THE ENTIRE PROJECT
driver.manage().timeouts().implicitlyWait(25, TimeUnit.SECONDS);
Any time webdriver needs to interact with the element, it will wait until x time until finds the element. If the time is up, then it will throw an exception. It will be set at the project level, waiting for this amount of time to all interactions.
explicitlyWait- FOR THE SPECIFIC METHOD
WebDriverWait wait = new WebDriverWait(driver, 5);
wait.unitl(ExpectedConditions.invisibiliyOf(element you have in the page that will disappear)