diff --git a/src/models/IDE/VisualStudioCode.py b/src/models/IDE/VisualStudioCode.py index a6ee619..50eed78 100644 --- a/src/models/IDE/VisualStudioCode.py +++ b/src/models/IDE/VisualStudioCode.py @@ -138,9 +138,13 @@ def copy_terminal_output(self): split into lines, and return the list """ self.focus_terminal_output_panel() + time.sleep(1) self.press_keys("ctrl", "a") + time.sleep(1) self.press_keys("ctrl", "c") + time.sleep(1) self.press_keys("esc") + time.sleep(1) return get_clipboard_text(True) def clear_terminal_output_panel(self):