Files
awx/awx/ui/test/e2e/commands/findThenClick.js
2018-11-07 09:01:23 -05:00

13 lines
357 B
JavaScript

const spinny = "//*[contains(@class, 'spinny')]";
exports.command = function findThenClick (selector) {
this.waitForElementPresent(selector, () => {
this.moveToElement(selector, 0, 0, () => {
this.click(selector, () => {
this.waitForElementNotVisible(spinny);
});
});
});
return this;
};