Skip to content

Commit 1bcf523

Browse files
committed
Add a wiggle to mouseOut
1 parent 284a15a commit 1bcf523

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/org/labkey/test/WebDriverWrapper.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3007,7 +3007,12 @@ public void mouseOut()
30073007
try
30083008
{
30093009
scrollToTop();
3010-
new Actions(getDriver()).moveToLocation(0, 0).perform();
3010+
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();
30113016
}
30123017
catch (WebDriverException ignore) { }
30133018
}

0 commit comments

Comments
 (0)