admin管理员组文章数量:1341426
I want to count the elements in a list and then access the integer, not a Promise
object. So starting with:
var questionList = questionContainer.all(by.className('someclass'));
If there are three child elements with that class, I want console.log(questionList.count())
to output the integer 3
, not a Promise
object. Is this even possible? Even if it is some operation on the Promise
.
I want to count the elements in a list and then access the integer, not a Promise
object. So starting with:
var questionList = questionContainer.all(by.className('someclass'));
If there are three child elements with that class, I want console.log(questionList.count())
to output the integer 3
, not a Promise
object. Is this even possible? Even if it is some operation on the Promise
.
2 Answers
Reset to default 9protractor
has the count()
method available on ElementArrayFinder
:
expect(questionList.count()).toEqual(3);
Note that count()
returns a promise, expect()
is "patched" to resolve promises implicitly.
If you need the actual value to be, for instance, printed on the console - resolve the promise explicitly with then()
:
questionList.count().then(function (count) {
console.log(count);
});
Or, even simpler:
questionList.count().then(console.log);
And, for instance, store the integer for using if statement?
questionList.count().then(function (count) {
var res = count;
});
if (res < 3) ...
It would be this way?
本文标签: javascriptProtractor count elements and store the integerStack Overflow
版权声明:本文标题:javascript - Protractor count elements and store the integer - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743672720a2519800.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论