wdio-wait-for
Version:
a library of conditions that are useful for end-to-end tests
14 lines (13 loc) • 571 B
TypeScript
import type { StringOrElement } from './../utils/element.types';
/**
* A condition for checking that an element is not present on the DOM of a page
*
* @example
* browser.waitUntil(stalenessOf('.header'));
*
* @param {!string | ChainablePromiseElement<WebdriverIO.Element>} selectorOrElement The selector or element to check
*
* @returns {!function} An expected condition that returns a promise
* representing whether the element is not present on the DOM.
*/
export declare function stalenessOf(selectorOrElement: StringOrElement): () => Promise<boolean>;