TestCafe-将选择器的结果存储在变量中

时间:2018-11-27 14:20:10

标签: javascript node.js automated-tests e2e-testing testcafe

因此,为了测试一下,我的搜索结果根据输入的关键字而有所不同,我想在输入关键字之前存储searchResults的节点列表,然后将它们与添加一个后得到的searchResults的nodeList进行比较。关键字,但我无法使用它。

我尝试过:

let results = await Selector('#example')

但是,这并没有给我返回节点列表。 我还尝试只使用带有document.querySelectorAll()的clientFunction,但是TestCafe然后告诉我改用Selector。

该怎么办?我看不到也许有更好的方法对此进行测试?

1 个答案:

答案 0 :(得分:3)

您可以提取所需的所有属性,以便以后进行比较。

检查这个小例子:

index.html:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<script>
    function removeSpanId3 () {
        const span = document.getElementById('id3');

        document.querySelector('div').removeChild(span);
    }
</script>
<button id="removeSpan" onclick="removeSpanId3()">Remove span</button>
<div>
    <span id="id1">
        test1
    </span>

    <span id="id2">
        test12
    </span>

    <span id="id3">
        test123
    </span>

    <span id="id4">
        none
    </span>
</div>

test.js:

import { Selector } from 'testcafe';

fixture `test`
    .page('http://localhost:8080');

test('Test1', async t => {
    const results       = await Selector('span');
    const resultsCount1 = await Selector('span').count;

    const result1 = [];
    const result2 = [];

    for (let i = 0; i < resultsCount1; i++) {
        const text = await results.nth(i).innerText;

        result1.push(text);
    }

    // Remove span
    await t.click(Selector('button').withText('Remove span'));

    const resultsCount2 = await Selector('span').count;

    for (let i = 0; i < resultsCount2; i++) {
        const text = await results.nth(i).innerText;

        result2.push(text);
    }

    await t
        .expect(result1.length).eql(result2.length + 1);
});