From 4a9d5535d3837c1c9861eedf16a4cbfae54ef73a Mon Sep 17 00:00:00 2001 From: Lukas Ruzicka Date: Dec 07 2018 11:37:16 +0000 Subject: Add sleep. --- diff --git a/gnome_terminal/features/steps/steps.py b/gnome_terminal/features/steps/steps.py index e93375d..a145083 100755 --- a/gnome_terminal/features/steps/steps.py +++ b/gnome_terminal/features/steps/steps.py @@ -17,6 +17,7 @@ def start(context): try: context.app.startViaCommand(insideSession=True) context.app.instance = root.application('gnome-terminal-server') + sleep(2) return except AssertionError: sleep(10) @@ -47,7 +48,6 @@ def item_in_menu(context, menuitem): @step('press {option} shortcut') def press_shortcut(context, option): if option == 'New Tab': - breakpoint() keyCombo('T') else: pass