[orca] Add initial delay to some of the UI regression tests



commit f087a927262d63a671ac797df4189b520f57c4dd
Author: Joanmarie Diggs <jdiggs igalia com>
Date:   Mon Oct 12 16:47:49 2015 -0400

    Add initial delay to some of the UI regression tests

 test/keystrokes/firefox/ui_role_menu_bar.py        |    1 +
 test/keystrokes/firefox/ui_role_page_tab.py        |    2 +-
 test/keystrokes/firefox/ui_role_push_button.py     |    1 +
 test/keystrokes/firefox/ui_role_radio_button.py    |    1 +
 test/keystrokes/firefox/ui_role_radio_menu_item.py |    1 +
 test/keystrokes/firefox/ui_role_tree.py            |    1 +
 test/keystrokes/firefox/ui_role_tree_table.py      |    1 +
 7 files changed, 7 insertions(+), 1 deletions(-)
---
diff --git a/test/keystrokes/firefox/ui_role_menu_bar.py b/test/keystrokes/firefox/ui_role_menu_bar.py
index b4d49df..6a4c904 100644
--- a/test/keystrokes/firefox/ui_role_menu_bar.py
+++ b/test/keystrokes/firefox/ui_role_menu_bar.py
@@ -7,6 +7,7 @@ import utils
 
 sequence = MacroSequence()
 
+sequence.append(PauseAction(3000))
 sequence.append(KeyComboAction("<Alt>f"))
 
 sequence.append(utils.StartRecordingAction())
diff --git a/test/keystrokes/firefox/ui_role_page_tab.py b/test/keystrokes/firefox/ui_role_page_tab.py
index 312c9b2..576f0e8 100644
--- a/test/keystrokes/firefox/ui_role_page_tab.py
+++ b/test/keystrokes/firefox/ui_role_page_tab.py
@@ -7,7 +7,7 @@ import utils
 
 sequence = MacroSequence()
 
-sequence.append(utils.StartRecordingAction())
+sequence.append(PauseAction(3000))
 sequence.append(KeyComboAction("<Alt>f"))
 sequence.append(KeyComboAction("p"))
 
diff --git a/test/keystrokes/firefox/ui_role_push_button.py b/test/keystrokes/firefox/ui_role_push_button.py
index 6edb5a4..e55d507 100644
--- a/test/keystrokes/firefox/ui_role_push_button.py
+++ b/test/keystrokes/firefox/ui_role_push_button.py
@@ -7,6 +7,7 @@ import utils
 
 sequence = MacroSequence()
 
+sequence.append(PauseAction(3000))
 sequence.append(KeyComboAction("<Alt>f"))
 sequence.append(KeyComboAction("p"))
 
diff --git a/test/keystrokes/firefox/ui_role_radio_button.py b/test/keystrokes/firefox/ui_role_radio_button.py
index c318e6f..d0afe32 100644
--- a/test/keystrokes/firefox/ui_role_radio_button.py
+++ b/test/keystrokes/firefox/ui_role_radio_button.py
@@ -7,6 +7,7 @@ import utils
 
 sequence = MacroSequence()
 
+sequence.append(PauseAction(3000))
 sequence.append(KeyComboAction("<Alt>f"))
 sequence.append(KeyComboAction("p"))
 
diff --git a/test/keystrokes/firefox/ui_role_radio_menu_item.py 
b/test/keystrokes/firefox/ui_role_radio_menu_item.py
index 3c91ea4..41e15de 100644
--- a/test/keystrokes/firefox/ui_role_radio_menu_item.py
+++ b/test/keystrokes/firefox/ui_role_radio_menu_item.py
@@ -7,6 +7,7 @@ import utils
 
 sequence = MacroSequence()
 
+sequence.append(PauseAction(3000))
 sequence.append(KeyComboAction("<Alt>v"))
 
 sequence.append(utils.StartRecordingAction())
diff --git a/test/keystrokes/firefox/ui_role_tree.py b/test/keystrokes/firefox/ui_role_tree.py
index ddf06d2..f84b0e9 100644
--- a/test/keystrokes/firefox/ui_role_tree.py
+++ b/test/keystrokes/firefox/ui_role_tree.py
@@ -7,6 +7,7 @@ import utils
 
 sequence = MacroSequence()
 
+sequence.append(PauseAction(3000))
 sequence.append(KeyComboAction("<Alt>b"))
 sequence.append(KeyComboAction("Return"))
 
diff --git a/test/keystrokes/firefox/ui_role_tree_table.py b/test/keystrokes/firefox/ui_role_tree_table.py
index 1bf105f..8abfd4f 100644
--- a/test/keystrokes/firefox/ui_role_tree_table.py
+++ b/test/keystrokes/firefox/ui_role_tree_table.py
@@ -7,6 +7,7 @@ import utils
 
 sequence = MacroSequence()
 
+sequence.append(PauseAction(3000))
 sequence.append(KeyComboAction("<Alt>b"))
 sequence.append(KeyComboAction("Return"))
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]