From 312605a4f9a7be8083a57cc4f2cf6403f2a93b10 Mon Sep 17 00:00:00 2001 From: Omkar Khatavkar Date: Thu, 11 Jan 2024 02:23:57 +0530 Subject: [PATCH] fixing the incorrect recording video url (#13714) fixing the recording video url --- robottelo/hosts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/robottelo/hosts.py b/robottelo/hosts.py index 8e48f963fe1..f20b2ce4956 100644 --- a/robottelo/hosts.py +++ b/robottelo/hosts.py @@ -1857,7 +1857,7 @@ def get_caller(): raise finally: video_url = settings.ui.grid_url.replace( - ':4444', f'/videos/{ui_session.ui_session_id}.mp4' + ':4444', f'/videos/{ui_session.ui_session_id}/video.mp4' ) if self.record_property is not None and settings.ui.record_video: self.record_property('video_url', video_url)