Files
tasks/tests/node_modules/nightwatch/lib/api/element-commands/_elementByRecursion.js

44 lines
1.5 KiB
JavaScript

var util = require('util');
var events = require('events');
/**
* Search for an element on the page, starting with the first element of the array, and where each element in the passed array is nested under the previous one. The located element will be returned as a WebElement JSON object.
*
* @param {Array} elements An array of ancestor element objects containing selector and locateStrategy properties
* @param {function} [callback] Optional callback function to be called when the command finishes.
* @api protocol
*/
function ElementByRecursion(client) {
events.EventEmitter.call(this);
this.protocol = require('../protocol.js')(client);
}
util.inherits(ElementByRecursion, events.EventEmitter);
ElementByRecursion.prototype.command = function(elements, callback) {
var self = this;
var allElements = elements.slice();
var topElement = allElements.shift();
var el = this.protocol.element(topElement.locateStrategy, topElement.selector, function checkResult(result) {
if (result.status !== 0) {
callback(result);
self.emit('complete', el, self);
} else {
var nextElement = allElements.shift();
var parentId = result.value.ELEMENT;
if (nextElement) {
self.protocol.elementIdElement(parentId, nextElement.locateStrategy, nextElement.selector, checkResult);
} else {
callback(result);
self.emit('complete', el, self);
}
}
});
return this;
};
module.exports = ElementByRecursion;