1

我刚刚开始使用名为 testcafe 的东西。我希望断言我已收到带有选择器“#audit > h4”的列表。它需要 >= 1。我不确定用于 >= 1 的语法,或者它应该放在哪里作为 JS 的新手。

到目前为止,这是我的代码,第二个测试需要建议:

fixture `UI Tests`
    .page `http://localhost:8080/`;

test('Clicking the search button', async t => {
    await t
        .click ('#search-result > div > div > button');
});

test('Asserting a list of audits', async t => {
    await t
        .expect('#audit > h4')
});
4

1 回答 1

4

终于找到了答案

.expect(Selector(page.auditListId).count).gte(2);
于 2017-05-16T14:04:46.120 回答