Explicit Wait -Mobile and Web Examples

  
Explicit Wait- Web  
WebDriverWait waitForBackBtnOnSignUp = new WebDriverWait(Test_Env_Setup_AppiumController.driver, 30);
waitForBackBtnOnSignUp.until(ExpectedConditions.presenceOfElementLocated(By.
  AccessibilityId("signUpContactInfoBack")));
        
  
Explicit Wait- Mobile  
WebDriverWait waitForBackBtnOnSignUp = new WebDriverWait(Test_Env_Setup_AppiumController.driver, 30);
waitForBackBtnOnSignUp.until(ExpectedConditions.presenceOfElementLocated(MobileBy.
  AccessibilityId("signUpContactInfoBack")));