TestCafe从元素获取文本

时间:2019-03-21 15:30:57

标签: javascript automated-tests e2e-testing web-testing testcafe

我正在尝试从Chrome上的模式获取文本。使用控制台,我可以得到如下内部文本:

document.querySelector('.my-form > a').innerText
// returns http://a-url.com

现在,在我的测试中,我可以使用来评估元素

const myText = Selector('.my-form > a').innerText;
await t
  .expect(myText).contains('url');

我什至可以点击该网址

await t.click(myText);

但是例如,我不能将内部文本放入变量中。我尝试使用this post

中的ClientFunction
const getUrl = ClientFunction(() => document.querySelector('.my-form > a').innerText);

test('My Test', async t => {
const text = await getUrl();
console.log(text);
});

// this results in 
// TypeError: Cannot read property 'innerText' of null

并按照this post的建议尝试使用普通选择器

const text = Selector('.my-form > a').innerText;
const inner = await text.textContent;
console.log(inner);

// prints: undefined

如何从元素中提取文本?我了解t.selectText在这种情况下受到限制,对吧?

2 个答案:

答案 0 :(得分:4)

从您要的documentation

const text = await Selector('.my-form > a').innerText;

答案 1 :(得分:0)

这可以解决问题:

const paragraph      = Selector("p").withText("possible entries");
const extractEntries = await paragraph.textContent;