mirror of
https://github.com/ZwareBear/awx.git
synced 2026-05-05 07:51:51 -05:00
14 lines
341 B
JavaScript
14 lines
341 B
JavaScript
const spinny = 'div.spinny';
|
|
|
|
exports.command = function navigateTo (url, expectSpinny = true) {
|
|
this.url('data:,'); // https://github.com/nightwatchjs/nightwatch/issues/1724
|
|
this.url(url);
|
|
|
|
if (expectSpinny) {
|
|
this.waitForElementVisible(spinny);
|
|
this.waitForElementNotVisible(spinny);
|
|
}
|
|
|
|
return this;
|
|
};
|