Skip to content
Open
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,8 @@ public static void waitForJBrowseToLoad(BaseWebDriverTest test)
test.waitForElement(Locator.tagWithAttribute("button", "title", "close this track").notHidden(), WebDriverWrapper.WAIT_FOR_PAGE);
test.waitForElement(Locator.tagWithClassContaining("button", "MuiButtonBase-root").notHidden(), WebDriverWrapper.WAIT_FOR_PAGE); //this is the icon from the track label

test.waitForElementToDisappear(Locator.tagWithText("div", "Loading"), WebDriverWrapper.WAIT_FOR_PAGE); //track data
test.waitForElementToDisappear(Locator.tagWithText("p", "Loading").withClass("MuiTypography-root"), WebDriverWrapper.WAIT_FOR_PAGE); // the track data
Locator.XPathLocator trackContainer = Locator.tagWithAttributeContaining("div", "data-testid", "trackRenderingContainer-");
test.waitForElement(trackContainer.descendant(Locator.tagWithAttributeContaining("canvas", "data-testid", "_done")), WebDriverWrapper.WAIT_FOR_PAGE); //track data
}

public static long getTotalVariantFeatures(BaseWebDriverTest test)
Expand Down
Loading