Reputation: 1
I'm trying to video record the browser activities in container execution. Does browserindocker.enableRecording() or watch() apis in Boni gracia webdriver manager 5.6.2 support it?
I have been trying to video record the browser activities in java framework
Upvotes: 0
Views: 99
Reputation: 4858
WebDriverManager allows to record the session of a dockerized browser using the method enableRecording()
together with browserInDocker()
. You can find the explanation and examples in the documentation:
https://bonigarcia.dev/webdrivermanager/#recordings
Upvotes: 1