diff --git a/demisto_sdk/commands/run_playbook/playbook_runner.py b/demisto_sdk/commands/run_playbook/playbook_runner.py index b3e535eeff5..b2f2a46552c 100644 --- a/demisto_sdk/commands/run_playbook/playbook_runner.py +++ b/demisto_sdk/commands/run_playbook/playbook_runner.py @@ -70,7 +70,8 @@ def run_playbook(self) -> int: if self.should_wait: logger.info( f"Waiting for the playbook to finish running.. \n" - f"To see the playbook run in real-time, visit: {work_plan_link}" + f"To see the playbook run in real-time, visit: {work_plan_link}\n" + f"Or for the web console: {work_plan_link.replace('/#/', '/').replace('//api-', '//')}" ) try: playbook_state_raw_response = ( diff --git a/demisto_sdk/commands/run_test_playbook/test_playbook_runner.py b/demisto_sdk/commands/run_test_playbook/test_playbook_runner.py index e0f8057ac63..6b169b3c522 100644 --- a/demisto_sdk/commands/run_test_playbook/test_playbook_runner.py +++ b/demisto_sdk/commands/run_test_playbook/test_playbook_runner.py @@ -165,7 +165,8 @@ def run_and_check_tpb_status(self, test_playbook_id, work_plan_link, incident_id status_code = SUCCESS_RETURN_CODE logger.info( f"Waiting for the test playbook to finish running.. \n" - f"To see the test playbook run in real-time please go to : {work_plan_link}" + f"To see the test playbook run in real-time please go to : {work_plan_link}\n" + f"Or for the web console: {work_plan_link.replace('/#/', '/').replace('//api-', '//')}" ) elapsed_time = 0