8 lines
142 B
JavaScript
8 lines
142 B
JavaScript
exports.command = function(pageId) {
|
|
|
|
this
|
|
.waitForElementVisible(pageId, 3000)
|
|
|
|
return this; // allows the command to be chained.
|
|
};
|