We're using selenium to generate our end to end tests. We are struggling to automate the drag and drop support for column grouping. Do you have any guidelines on how to test this functionality?
Thanks
1 Answer, 1 is accepted
0
T. Tsonev
Telerik team
answered on 24 Jul 2018, 06:22 AM
Hi,
The e2e test suite in the package source includes a test for drag-and-drop grouping:
(kendo-angular-grid/e2e/grouping.spec.ts)
import { browser, element, by } from '@progress/kendo-angular-e2e';
import { pointerDown, pointerMove, pointerUp } from '@progress/kendo-angular-e2e';
The pointerDown, pointerMove and pointerUp are included in an auxiliary package that is not officially supported.
I've made they source available in a gist, if you'd like to omit the dependency to it.