最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - TypeError: element(...).then is not a function in Protractor 3.2.1 - Stack Overflow

programmeradmin1浏览0评论

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 0
Add a ment  | 

1 Answer 1

Reset to default 10

Yeah, 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");
发布评论

评论列表(0)

  1. 暂无评论