无法使用Nightwatch.js获取所选文本

时间:2016-11-10 15:12:47

标签: javascript nightwatch.js e2e-testing

我想测试所选的文本值。 Nightwatch.js API有elementActive()来获取活动元素:

print my_transport.response.content

它给了我:

client.elementActive(function (result) {
    console.log(result);
});

如何获取所选文字?

1 个答案:

答案 0 :(得分:0)

做这样的事情

      browser.elementIdText(ELEMENT, (text) => {
          console.log('text ', text);
        }