您好我刚刚开始使用名为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')
});
答案 0 :(得分:3)
最终找到答案
.expect(Selector(page.auditListId).count).gte(2);