Skip to content

Commit

Permalink
test(capabilities): test that video tag can play video (#2477)
Browse files Browse the repository at this point in the history
  • Loading branch information
yury-s authored Jun 6, 2020
1 parent 3de0c08 commit 54f07f9
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 0 deletions.
Binary file added test/assets/movie.mp4
Binary file not shown.
Binary file added test/assets/movie.ogv
Binary file not shown.
16 changes: 16 additions & 0 deletions test/assets/video.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<html>
<body>

<video width="400" controls>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogv" type="video/ogg">
Your browser does not support HTML video.
</video>

<p>
Video courtesy of
<a href="https://www.bigbuckbunny.org/" target="_blank">Big Buck Bunny</a>.
</p>

</body>
</html>
5 changes: 5 additions & 0 deletions test/capabilities.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,9 @@ describe('Capabilities', function() {
await page.goto(server.EMPTY_PAGE);
expect(await page.evaluate(() => window.testStatus)).toBe('SUCCESS');
});
it.fail(WEBKIT)('should play video', async({page, server}) => {
await page.goto(server.PREFIX + '/video.html');
await page.$eval('video', v => v.play());
await page.$eval('video', v => v.pause());
});
});

0 comments on commit 54f07f9

Please sign in to comment.