Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test updates for Firefox 128 #962

Merged
merged 7 commits into from
Sep 16, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Try scrolling into view more
  • Loading branch information
labkey-tchad committed Sep 12, 2024
commit 19adf72a867dfeb447208518baa3b9731667490f
Original file line number Diff line number Diff line change
@@ -30,6 +30,7 @@
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.interactions.Actions;
import org.openqa.selenium.interactions.MoveTargetOutOfBoundsException;
import org.openqa.selenium.support.ui.ExpectedConditions;
import org.openqa.selenium.support.ui.WebDriverWait;

@@ -429,7 +430,8 @@ public int getTotalPlotCount()

public WebElement openExclusionBubble(String acquiredDate)
{
getWrapper().shortWait().ignoring(StaleElementReferenceException.class).withMessage("Exclusion pop-up for Acquired Date = " + acquiredDate)
getWrapper().shortWait().ignoring(StaleElementReferenceException.class, MoveTargetOutOfBoundsException.class)
.withMessage("Exclusion pop-up for Acquired Date = " + acquiredDate)
.until(input -> {
getWrapper().mouseOver(getPointByAcquiredDate(acquiredDate));
return getWrapper().isElementPresent(Locator.tagWithClass("div", "x4-form-display-field").withText(acquiredDate));