wdio-wait-for
Version:
a library of conditions that are useful for end-to-end tests
21 lines (20 loc) • 800 B
JavaScript
import { getElement } from '../utils/index.js';
/**
* A condition for checking an element contains a specific value
*
* @example
* browser.waitUntil(textToBePresentInElementValue('input', 'password'));
*
* @param {!string | ChainablePromiseElement<WebdriverIO.Element>} selectorOrElement The selector or element to check
* @param {!string} expectedValue The expected value to verify
*
* @returns {!function} A condition that returns a promise
* representing whether the element contains a specific value.
*/
export function textToBePresentInElementValue(selectorOrElement, expectedValue) {
return async function () {
const element = await getElement(selectorOrElement);
const value = await element.getValue();
return value.includes(expectedValue);
};
}