Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

staticWait(3000);             

           if(Utility.isExecutingOnMobile()) {

      waitForElementToBeVisible(driver, FavoriteLogo);

          if(!FavoriteLogo.isDisplayed()) {

  logger.error("Favorite Logo is not displayed");

  Utility.addAllureAttachment("Favorite Logo is not displayed", driver); }

               assertTrue(FavoriteLogo.isDisplayed());

               FavoriteLogo.click();}

           else {

          waitForElementToBeVisible(driver, FavoritesLink);

          scrolltoTop();

             if(!FavoritesLink.isDisplayed()) {

logger.error("Favorites Link is not displayed");

Utility.addAllureAttachment("Favorites Link is not displayed", driver);

}

             assertTrue(FavoritesLink.isDisplayed());

        FavoritesLink.click();

{

Wait<WebDriver> wait = new FluentWait<WebDriver>(driver)

.withTimeout(Duration.ofMillis(timeOutInMilliSecondsForWebElements))

.pollingEvery(Duration.ofMillis(pollingTimeInMillieSeconds))

.ignoring(NoSuchElementException.class);

wait.until(ExpectedConditions.visibilityOf(webElement));
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.7k views
Welcome To Ask or Share your Answers For Others

Please log in or register to answer this question.

Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...