Open aik099 opened 8 months ago
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 90.37%. Comparing base (
a637df5
) to head (b6823ea
).
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
Not merging yet, because I think we need to add a missing test in driver-testsuite.
Using the
moveto
WebDriver command the Firefox will trigger an\WebDriver\Exception\MoveTargetOutOfBounds
exception when the element is outside of the viewport:The
moveto
command is used in these driver methods:clickOnElement
click
(doesclickOnElement
internally)check
(doesclickOnElement
internally)uncheck
(doesclickOnElement
internally)setValue
(checkboxes only; doesclickOnElement
internally)mouseOver
rightClick
(doesmouseOver
internally)doubleClick
(doesmouseOver
internally).
The test suite isn't testing mouse-related operations (listed above) outside of the viewport.
P.S.
moveto
automatically adjusts the viewport.