关于点击testCafe
,我需要一个非常简单的帮助我'内部有10个
我该怎么做?
答案 0 :(得分:1)
使用nth(index)方法按索引选择元素:
function getRandomInt(min, max) {
return Math.floor(Math.random() * (max - min + 1)) + min;
}
const ul = Selector('ul');
const li = ul.find('li');
const liCount = await li.count;
const index = getRandomInt(0, liCount);
await t.click(li.nth(index));