我正在尝试测试移动设备上的网页,并单击视频上的播放按钮,但不播放视频。它在桌面浏览器上运行良好。我已经尝试了以下命令testcafe remote test/testCafe/was_test.js -e --autoplay-policy=no-user-gesture-required
,以下是我的代码,用于单击播放按钮。
test('see if video plays', async t => {
await t.wait(10000) //this is to wait for the page to load
data = await getdata()
const playButton = await Selector('.plyr__control--overlaid')
await t.click(playButton)
})