gpt4 book ai didi

javascript - 可以用 Protractor 测试视频播放、暂停和音频吗?

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:42:27 24 4
gpt4 key购买 nike

我在页面上嵌入了视频。当我点击播放图标时,它会在 JW 播放器上打开。 Protractor 可以用来测试视频的播放、暂停、音频功能吗?

有什么建议吗?

最佳答案

因为它是一个 flash 播放器,你不能在 DOM 元素上运行断言。但是,您可以使用播放器 API 进行断言:

it('it should be possible to play video', function () {
//play is initially at position 0
expect(browser.executeScript('jwplayer().getPosition()')).toBe(0);

$('video-container').click(); //clicks on the middle of the container div starts the diveo
browser.sleep(2000);
$('video-container').click(); //clicks on the middle of the container div stops the diveo

//play has moved its position
expect(browser.executeScript('jwplayer().getPosition()')).toBeGreaterThan(0);
});

关于javascript - 可以用 Protractor 测试视频播放、暂停和音频吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33219036/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com