我想获得对 DOM 元素的引用并单击它,但我不知道如何发现它。在 DOM 中会是这样的:
$('.filter-buttons :nth-child(2)').get(0).click() , or using [0]instead of get(0)
但是对于 Nightmare 函数 click 只接受一个参数 .click(selector)
.click('.filter-buttons :nth-child(2)')
. 问题是我不知道将 get(0) 放在哪里。有任何想法吗?