A test automation library based on common other best practice open source libraries. It adds missing functionalities but does not reinvent the wheel. Just glues stuff together nicely and adds some sprinkles.
MIT License
80
stars
11
forks
source link
Bug: Video Recording is missing parts of the page. #306
When recording a gif (maybe also mp4) on a browser which has a bigger size thatn the default window size configured, we've seen an issue resulting in a smaller video, than the actual browser view port.
What is going on here:
The browser opens and shows an empty page
The first screenshot of the automated video recording is taken
The browser is resized to the configured size
The next screenshots are taken, but in a different size than the first one
The final video has the size of the smallest (or first) screenshot which is not the actual browser size of the test
How to solve this:
Make sure the video recording is starting AFTER the browser is resized to it's final size.
Actual Behaviour
The recorded video has the size of the default browser size on start up.
Expected Behaviour
The recorded video has the size of the configured browser size.
Quick Description
When recording a gif (maybe also mp4) on a browser which has a bigger size thatn the default window size configured, we've seen an issue resulting in a smaller video, than the actual browser view port.
What is going on here:
How to solve this: Make sure the video recording is starting AFTER the browser is resized to it's final size.
Actual Behaviour
The recorded video has the size of the default browser size on start up.
Expected Behaviour
The recorded video has the size of the configured browser size.