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 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");

本文标签: javascriptTypeError element()then is not a function in Protractor 321Stack Overflow