Testcafe-处理视频

时间:2019-03-15 12:44:52

标签: javascript video jquery-selectors testcafe current-time

我正在测试一个带有嵌入式视频的页面,在这里可以使用控制台播放,停止并获取当前播放时间。

当我尝试将其翻译为Testcafe时,出现错误。这是我在控制台上所做的工作:

var vid = document.querySelector('.video-tech')
if (vid.paused === false) {
  vid.pause();
} else {
  vid.play();
}
document.querySelector('.video-current-time-display').innerText // 0:33

然后我尝试使用Testcafe语法获取这些元素:

const playVideo = ClientFunction(() => {
      document.querySelector('.video-tech').play();
    });

const pauseVideo = ClientFunction(() => {
      document.querySelector('.video-tech').pause();
    });

到目前为止,一切都很好。问题是我无法使用If-Else语句和ClientFunction

我的目标是从current-time-display获取文本,然后让视频播放几秒钟,然后停止。

1 个答案:

答案 0 :(得分:3)

这似乎是浏览器策略的限制,您可能需要指定--autoplay-policy=no-user-gesture-required标志(chrome:// flags /#autoplay-policy)(在Chrome浏览器的情况下):

testcafe "chrome --autoplay-policy=no-user-gesture-required" test.js