Protractor: element.getText() returns an object and not String(量角器:element.getText() 返回一个对象而不是字符串)
问题描述
我有一个元素定义为
this.clientRowName = element(by.id('CLIENT_NAME')); //page object file
我想阅读这个元素中的文本,它是ABC",但是这样做:var client = page.clientRowName.getText();
I want to read the text in this element which is "ABC" but doing: var client = page.clientRowName.getText();
返回一个对象而不是一个字符串.有没有其他方法可以获取元素的文本
returns an object instead of a string. Is there any other way that I can get the text for the element
推荐答案
getText()
返回一个promise,你需要解决它:
page.clientRowName.getText().then(function (text) {
console.log(text);
});
或者,如果你只想断言文本,让 expect()
为你解析承诺:
Or, if you just want to assert the text, let expect()
resolve the promise for you:
expect(page.clientRowName.getText()).toEqual("ABC");
承诺和控制流 文档页面应该可以解决问题.
Promises and the Control Flow documentation page should clear things up.
这篇关于量角器:element.getText() 返回一个对象而不是字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:量角器:element.getText() 返回一个对象而不是字符串
基础教程推荐
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 直接将值设置为滑块 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01