18 January 2026:
Sahi Pro is an enterprise grade test automation platform which can automate web, mobile, API, windows and java based applications and SAP.
This forum is now archived and is in read-only mode. Please continue discussions on our improved new Sahi Pro Community forum.
Sahi Pro is an enterprise grade test automation platform which can automate web, mobile, API, windows and java based applications and SAP.
Sahi Mouse selection not working properly
I have an application where there is jquery UI selection http://jqueryui.com/selectable/#display-grid implemented on a table cells. By using sahi 3.5 I was able to replicate the selection functionality for automation testing, using
function gwtDragDrop($dragEl, $dropEl) {
_assert(_isVisible($dragEl));
_assert(_isVisible($dropEl));
_mouseDown($dragEl);
_mouseOver($dragEl);
_mouseOver($dropEl);
_mouseUp($dropEl);
}
Once I upgraded by tests to Sahi 4.4, the selection functionality was not working properly. It was selection 2 cells as a time.
Can anyone help me with this ?
function gwtDragDrop($dragEl, $dropEl) {
_assert(_isVisible($dragEl));
_assert(_isVisible($dropEl));
_mouseDown($dragEl);
_mouseOver($dragEl);
_mouseOver($dropEl);
_mouseUp($dropEl);
}
Once I upgraded by tests to Sahi 4.4, the selection functionality was not working properly. It was selection 2 cells as a time.
Can anyone help me with this ?