File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2962,10 +2962,11 @@ public void mouseOut()
29622962 catch (WebDriverException ignore ) { }
29632963 }
29642964
2965- public void mouseOver (Locator l )
2965+ public WebElement mouseOver (Locator l )
29662966 {
29672967 WebElement el = l .findElement (getDriver ());
29682968 mouseOver (el );
2969+ return el ;
29692970 }
29702971
29712972 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