Bug 1070307: have findElements return an array of objects with a key instead of just an array of strings; r=jgriffin

--HG--
extra : rebase_source : d6c80438d56dedb8f4b907f48ba568231424552b
This commit is contained in:
David Burns 2015-01-19 23:01:18 +00:00
Родитель c38b87fe5d
Коммит ebdcfaf1cc
2 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -1397,7 +1397,7 @@ class Marionette(object):
assert(isinstance(response, list))
elements = []
for x in response:
elements.append(HTMLElement(self, x))
elements.append(HTMLElement(self, x['ELEMENT']))
return elements
def get_active_element(self):

Просмотреть файл

@ -310,6 +310,7 @@ ElementManager.prototype = {
result = [];
for (let i = 0; i < val.length; ++i) {
result.push(this.wrapValue(val[i]));
}
}
else if (val == null) {
@ -470,7 +471,7 @@ ElementManager.prototype = {
if (isArrayLike) {
let ids = []
for (let i = 0 ; i < found.length ; i++) {
ids.push(this.addToKnownElements(found[i]));
ids.push({'ELEMENT': this.addToKnownElements(found[i])});
}
on_success(ids, command_id);
} else {