Files
awx/awx/ui/test/e2e/commands/findThenClick.js
Daniel Sami 1e3c229460 lint fixes
2018-10-11 12:24:55 -04:00

9 lines
228 B
JavaScript

exports.command = function findThenClick (selector) {
this.waitForElementPresent(selector, () => {
this.moveToElement(selector, 0, 0, () => {
this.click(selector);
});
});
return this;
};