File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
jbrowse/test/src/org/labkey/test/tests/external/labModules Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 3636import org .labkey .test .Locator ;
3737import org .labkey .test .TestFileUtils ;
3838import org .labkey .test .TestTimeoutException ;
39- import org .labkey .test .WebDriverWrapper ;
4039import org .labkey .test .WebTestHelper ;
4140import org .labkey .test .categories .External ;
4241import org .labkey .test .categories .LabModule ;
@@ -457,7 +456,10 @@ private void testTitleMapping()
457456
458457 Actions actions = new Actions (getDriver ());
459458 WebElement toClick = getDriver ().findElements (getVariantWithinTrack ("mgap_hg38" , "SNV T -> C" )).stream ().filter (WebElement ::isDisplayed ).collect (JBrowseTestHelper .toSingleton ()); // 1:137..137
460- actions .click (toClick ).perform ();
459+ actions .moveToElement (toClick )
460+ .pause (500 )
461+ .click ()
462+ .perform ();
461463 waitForElement (Locator .tagWithText ("div" , "1:137" ));
462464 assertElementPresent (Locator .tagWithText ("td" , "Minor Allele Frequency" ));
463465 }
You can’t perform that action at this time.
0 commit comments