You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 10, 2024. It is now read-only.
This simple test case breaks in jenkins but runs perfectly fine in local machine:
describe('BF drag and drop', function () {
it('should drag and drop BF from left to right', function () {
let src = 0;
let tgt = 1;
expect(bfbaConfig.getBfNthElementName(src)).toBe('BF 1');
browser.actions().dragAndDrop(bfbaConfig.getBfNthElement(src), bfbaConfig.getBfNthElement(tgt)).perform();
browser.sleep(2000);
expect(bfbaConfig.getBfNthElementName(src)).toBe('BF name edited');
browser.actions().dragAndDrop(bfbaConfig.getBfNthElement(src), bfbaConfig.getBfNthElement(tgt)).perform();
browser.sleep(2000); // experimental code to perform wait operation after drag and drop
expect(bfbaConfig.getBfNthElementName(src)).toBe('BF 1');
});
});
This simple test case breaks in jenkins but runs perfectly fine in local machine:
Using angular-drag-and-drop-lists dependency
Huge performance issues while drag and drop with medium and large data set of records
The text was updated successfully, but these errors were encountered: