segmentio / nightmare单击具有数据属性的div

时间:2018-10-23 08:01:37

标签: testing nightmare

我使用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)
    })
}

0 个答案:

没有答案