File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2967,10 +2967,11 @@ public void mouseOut()
29672967 catch (WebDriverException ignore ) { }
29682968 }
29692969
2970- public void mouseOver (Locator l )
2970+ public WebElement mouseOver (Locator l )
29712971 {
29722972 WebElement el = l .findElement (getDriver ());
29732973 mouseOver (el );
2974+ return el ;
29742975 }
29752976
29762977 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