Marco Ortelee
Marco Ortelee
See also issue "Example for AppendExisting in C#".
For naming the videos using playwright-video I use the names of the scenario's (using cucumber). ``` this.scenarioContext['scenarioName'] = scenario.pickle.name; async startVideoCapturing(world: World, page: Page): Promise { const scenarioName = world.scenarioContext['scenarioName'];...
> @mortelee this issue is about the Playwright integrated video recording feature which was added a few versions ago. Your code snippet shows the usage with playwright-video, a third-party solution...
Hi all, video saving works for me. I've added code snippet of how I use it: private async saveVideo(world: CustomWorld, page: Page): Promise { const scenarioName = world.scenarioContext['scenarioName'] as string;...