Test Video Play Using Cypress

1 ยท Gleb Bahmutov ยท Aug. 13, 2021, 2:29 p.m.
If you want to play a video using <video> element, how do you confirm that it is playing? By using its properties.index.html1234567891011121314<head> <style> video { width: 100%; } </style></head><body> <h1>Video</h1> <video controls="true"> <source src="test1.mp4" type="video/mp4" /> </video></body>๐ŸŽ You can find the source code for this blog post in the repo bahmutov/video-example.At the start, the video should be paused. We can confirm it using have.prop assertions.cypress/...