mirror of
https://github.com/ansible/awx.git
synced 2026-03-05 10:41:05 -03:30
9 lines
265 B
JavaScript
9 lines
265 B
JavaScript
/* Utility function to wait for the working spinner to disappear. */
|
|
exports.command = function waitForSpinny () {
|
|
const selector = 'div.spinny';
|
|
this
|
|
.waitForElementVisible(selector)
|
|
.waitForElementNotVisible(selector);
|
|
return this;
|
|
};
|