mirror of
https://github.com/ZwareBear/awx.git
synced 2026-05-01 12:21:48 -05:00
13 lines
357 B
JavaScript
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;
|
|
};
|