我还检查了链接:量角器:element.getText()返回一个对象而不是字符串 ,但我在上面的链接上没有找到答案,我想要字符串作为回报?
问问题
4477 次
1 回答
2
所有量角器的方法都返回承诺,要解决该承诺,您需要发送如下内容:
element.getText().then(function(text) {
console.log(text);
});
or use "expect"-->jasmine's assertion
expect(element.getText()).toEqual("Your Text");
有关承诺的详细想法,我建议请通过此链接: http ://www.html5rocks.com/en/tutorials/es6/promises/
于 2016-06-04T09:01:00.157 回答