我使用segmentio /噩梦测试网络。如何单击数据类型为“ 1”的div?
<div data-type="1" class="btnRate selected" title="1">1.07</div>
我的代码: const Nightmare = require('噩梦') const nightmare =噩梦({show:true})
function goToSite1(){
nightmare
.goto('https://page.local/')
.click('.btnRate[data-type="1"]')
.wait('#buttonSubmitId')
.catch(error => {
console.error('Tipsport failed:', error)
})
}