[orca] Updated test
- From: Joanmarie Diggs <joanied src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [orca] Updated test
- Date: Mon, 17 Oct 2016 18:24:22 +0000 (UTC)
commit 69f786510b8826bae6e2b0d9e0e5d39bd2290d3b
Author: Joanmarie Diggs <jdiggs igalia com>
Date: Mon Oct 17 14:23:33 2016 -0400
Updated test
test/keystrokes/oowriter/ui_find.py | 42 +++++++++++++++++++++++++++++++++++
1 files changed, 42 insertions(+), 0 deletions(-)
---
diff --git a/test/keystrokes/oowriter/ui_find.py b/test/keystrokes/oowriter/ui_find.py
new file mode 100644
index 0000000..a307b0a
--- /dev/null
+++ b/test/keystrokes/oowriter/ui_find.py
@@ -0,0 +1,42 @@
+#!/usr/bin/python
+
+from macaroon.playback import *
+import utils
+
+sequence = MacroSequence()
+
+sequence.append(PauseAction(3000))
+sequence.append(KeyComboAction("<Control>Home"))
+
+sequence.append(utils.StartRecordingAction())
+sequence.append(KeyComboAction("<Control>f"))
+sequence.append(utils.AssertPresentationAction(
+ "1. Ctrl+F",
+ ["BRAILLE LINE: 'Untitled 1 - LibreOffice Writer frame Untitled 1 - LibreOffice Writer root pane Find
tool bar $l combo box'",
+ " VISIBLE: ' $l combo box', cursor=1",
+ "SPEECH OUTPUT: 'Find tool bar'",
+ "SPEECH OUTPUT: 'Find Text editable combo box.'"]))
+
+sequence.append(TypeAction("foo"))
+
+sequence.append(utils.StartRecordingAction())
+sequence.append(KeyComboAction("Tab"))
+sequence.append(utils.AssertPresentationAction(
+ "2. Tab",
+ ["BRAILLE LINE: 'Untitled 1 - LibreOffice Writer frame Untitled 1 - LibreOffice Writer root pane Find
tool bar Find Previous push button'",
+ " VISIBLE: 'Find Previous push button', cursor=1",
+ "SPEECH OUTPUT: 'Find Previous push button'"]))
+
+sequence.append(utils.StartRecordingAction())
+sequence.append(KeyComboAction("<Shift>ISO_Left_Tab"))
+sequence.append(utils.AssertPresentationAction(
+ "3. Shift+Tab",
+ ["BRAILLE LINE: 'Untitled 1 - LibreOffice Writer frame Untitled 1 - LibreOffice Writer root pane Find
tool bar foo $l combo box'",
+ " VISIBLE: 'foo $l combo box', cursor=4",
+ "SPEECH OUTPUT: 'Find Text editable combo box.'",
+ "SPEECH OUTPUT: 'foo selected'"]))
+
+sequence.append(KeyComboAction("<Alt>F4"))
+
+sequence.append(utils.AssertionSummaryAction())
+sequence.start()
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]