webdriverio
Version:
Next-gen browser and mobile automation test framework for Node.js
8 lines • 389 B
TypeScript
/**
* check if element is stable (an element is considered unstable when it is animating/moving)
* @param {HTMLElement} elem element to check
* @param {Function} done callback function to be called when done
* @return {void}
*/
export default function isElementStable(elem: HTMLElement, done: (returnValue: boolean) => void): void;
//# sourceMappingURL=isElementStable.d.ts.map