File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2979,10 +2979,11 @@ public void mouseOut()
29792979 catch (WebDriverException ignore ) { }
29802980 }
29812981
2982- public void mouseOver (Locator l )
2982+ public WebElement mouseOver (Locator l )
29832983 {
29842984 WebElement el = l .findElement (getDriver ());
29852985 mouseOver (el );
2986+ return el ;
29862987 }
29872988
29882989 public void mouseOver (WebElement el )
Original file line number Diff line number Diff line change 5656import org .labkey .test .params .list .IntListDefinition ;
5757import org .labkey .test .params .list .ListDefinition ;
5858import org .labkey .test .util .DataRegionTable ;
59+ import org .labkey .test .util .LabKeyExpectedConditions ;
5960import org .labkey .test .util .LogMethod ;
6061import org .labkey .test .util .LoggedParam ;
6162import org .labkey .test .util .Maps ;
@@ -1215,7 +1216,8 @@ private void doTestReportIcon()
12151216 private void doTestReportCreatedDate ()
12161217 {
12171218 log ("Verify module report \" created\" date" );
1218- click (Locator .tag ("span" ).withClass ("fa-list-ul" ).notHidden ());
1219+ WebElement detailsLink = Locator .tag ("span" ).withClass ("fa-list-ul" ).notHidden ().findElement (getDriver ());
1220+ doAndWaitForPageToLoad (() -> shortWait ().until (LabKeyExpectedConditions .clickUntilStale (detailsLink )));
12191221 waitForText ("August 01 2015" );
12201222 }
12211223
You can’t perform that action at this time.
0 commit comments