admin管理员组文章数量:1346076
I was using following code
element(by.xpath("//tf-navpane-item[contains(@class,'tf-state-selected')]//tf-navpane-item-text//*[contains(@class,'ng-binding')]")).then(function(ele){
ele.getText().then(function(txt){
console.log("txt: "+txt);
});
});
This code used to work fine when I was using Protractor 1.0. After upgrading Protractor to 3.2.1 ,I started to get following error.
TypeError: element(...).then is not a function
I maybe missing something but not sure what.
I was using following code
element(by.xpath("//tf-navpane-item[contains(@class,'tf-state-selected')]//tf-navpane-item-text//*[contains(@class,'ng-binding')]")).then(function(ele){
ele.getText().then(function(txt){
console.log("txt: "+txt);
});
});
This code used to work fine when I was using Protractor 1.0. After upgrading Protractor to 3.2.1 ,I started to get following error.
TypeError: element(...).then is not a function
I maybe missing something but not sure what.
Share Improve this question edited Apr 15, 2016 at 18:26 Naftali 146k41 gold badges247 silver badges304 bronze badges asked Apr 15, 2016 at 18:22 Murali KrishnaMurali Krishna 1711 silver badge11 bronze badges 01 Answer
Reset to default 10Yeah, this is something you should expect since the element()
cannot be directly resolved with then()
anymore (breaking change in Protractor 2.0). Instead, do:
var elm = element(by.xpath("//tf-navpane-item[contains(@class,'tf-state-selected')]//tf-navpane-item-text//*[contains(@class,'ng-binding')]"));
elm.getText().then(function(txt) {
console.log("txt: " + txt);
});
Note that, if you would need to assert the text, you can pass the getText()
into expect()
- it understands what a promise is and would resolve it before making an expectation:
expect(elm.getText()).toEqual("Expected text");
本文标签: javascriptTypeError element()then is not a function in Protractor 321Stack Overflow
版权声明:本文标题:javascript - TypeError: element(...).then is not a function in Protractor 3.2.1 - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743820057a2544627.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论