Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | 3x 1x 3x 3x 3x 3x |
/**
*
* Wait for an element for the provided amount of
* milliseconds to be present within the DOM. Returns true if the selector
* matches at least one element that exists in the DOM, otherwise throws an
* error. If the reverse flag is true, the command will instead return true
* if the selector does not match any elements.
*
* <example>
:waitForExistSyncExample.js
it('should display a notification message after successful form submit', function () {
const form = $('form');
const notification = $('.notification');
form.submit();
notification.waitForExist(5000);
expect(notification.getText()).to.be.equal('Data transmitted successfully!')
});
it('should remove a message after successful form submit', function () {
const form = $('form');
const message = $('.message');
form.submit();
// passing 'undefined' allows us to keep the default timeout value without overwriting it
message.waitForExist(undefined, true);
});
* </example>
*
* @alias element.waitForExist
* @param {Number=} ms time in ms (default: 500)
* @param {Boolean=} reverse if true it instead waits for the selector to not match any elements (default: false)
* @param {String=} error if exists it overrides the default error message
* @return {Boolean} true if element exists (or doesn't if flag is set)
* @uses utility/waitUntil, state/isExisting
* @type utility
*
*/
export default function waitForExist (ms, reverse = false, error) {
/*!
* ensure that ms is set properly
*/
if (typeof ms !== 'number') {
ms = this.options.waitforTimeout
}
const isReversed = reverse ? '' : 'not '
const errorMsg = typeof error === 'string' ? error : `element ("${this.selector}") still ${isReversed}existing after ${ms}ms`
return this.waitUntil(function async () {
return this.isExisting().then((isExisting) => isExisting !== reverse)
}, ms, errorMsg)
}
|