From 08caa3a2aca057537c26e2d0cab93b570be26f06 Mon Sep 17 00:00:00 2001 From: Satellite QE <115476073+Satellite-QE@users.noreply.github.com> Date: Wed, 10 Jan 2024 16:03:35 -0500 Subject: [PATCH] [6.15.z] fixing the incorrect recording video url (#13722) fixing the incorrect recording video url (#13714) fixing the recording video url (cherry picked from commit de84bd3e1d30074534ac42c7e66718ec73e19929) Co-authored-by: Omkar Khatavkar <okhatavkar007@gmail.com> --- 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)