量角器中文本字段的值-未定义

时间:2018-11-20 08:14:05

标签: protractor

我无法获取标签的值(因为该值不可编辑并由API返回)。 我正在使用getText,但输出始终为undefined。该字段的值为2222。 在下面使用

var activatedid = element(By.xpath("/html/body/app-root/mat-toolbar/div[3]/div[3]"));
activatedid.getText()
           .then(function(text) {
               console.log(this.text);

1 个答案:

答案 0 :(得分:0)

this.之前删除text,这样就可以

var activatedid = element(By.xpath("/html/body/app-root/mat-toolbar/div[3]/div[3]"));
activatedid.getText()
           .then(function(text) {
               console.log(text);
           })