From 03c87ca5768de33cb27c275c6bfbdcc416b06270 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 (cherry picked from commit de84bd3e1d30074534ac42c7e66718ec73e19929) --- robottelo/hosts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/robottelo/hosts.py b/robottelo/hosts.py index 9fee7352bb..7f4e75ebce 100644 --- a/robottelo/hosts.py +++ b/robottelo/hosts.py @@ -1830,7 +1830,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)