We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 284a15a commit 1bcf523Copy full SHA for 1bcf523
src/org/labkey/test/WebDriverWrapper.java
@@ -3007,7 +3007,12 @@ public void mouseOut()
3007
try
3008
{
3009
scrollToTop();
3010
- new Actions(getDriver()).moveToLocation(0, 0).perform();
+ new Actions(getDriver())
3011
+ .moveToLocation(0, 0)
3012
+ // Add a little wiggle to make sure tooltips notice
3013
+ .moveByOffset(4, 4)
3014
+ .moveByOffset(-2, -2)
3015
+ .perform();
3016
}
3017
catch (WebDriverException ignore) { }
3018
0 commit comments