Initial commit, very few changes from orca 45. Added xfce4-notification daemon support.
This commit is contained in:
205
test/keystrokes/firefox/line_nav_lists.py
Normal file
205
test/keystrokes/firefox/line_nav_lists.py
Normal file
@ -0,0 +1,205 @@
|
||||
#!/usr/bin/python
|
||||
|
||||
"""Test of HTML list presentation."""
|
||||
|
||||
from macaroon.playback import *
|
||||
import utils
|
||||
|
||||
sequence = MacroSequence()
|
||||
|
||||
#sequence.append(WaitForDocLoad())
|
||||
sequence.append(PauseAction(5000))
|
||||
|
||||
# Work around some new quirk in Gecko that causes this test to fail if
|
||||
# run via the test harness rather than manually.
|
||||
sequence.append(KeyComboAction("<Control>r"))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("<Control>Home"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"1. Top of file",
|
||||
["BRAILLE LINE: 'Welcome to a List of Lists h1'",
|
||||
" VISIBLE: 'Welcome to a List of Lists h1', cursor=1",
|
||||
"SPEECH OUTPUT: 'Welcome to a List of Lists heading level 1'"]))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("Down"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"2. Line Down",
|
||||
["BRAILLE LINE: 'Lists are not only fun to make, they are fun to use. They help us:'",
|
||||
" VISIBLE: 'Lists are not only fun to make, ', cursor=1",
|
||||
"SPEECH OUTPUT: 'Lists are not only fun to make, they are fun to use. They help us:'"]))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("Down"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"3. Line Down",
|
||||
["BRAILLE LINE: '1. remember what the heck we are doing each day'",
|
||||
" VISIBLE: '1. remember what the heck we are', cursor=1",
|
||||
"SPEECH OUTPUT: '1. remember what the heck we are doing each day.'"]))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("Down"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"4. Line Down",
|
||||
["BRAILLE LINE: '2. arrange long and arbitrary lines of text into ordered lists that are pleasing to the eye and suggest some sense of'",
|
||||
" VISIBLE: '2. arrange long and arbitrary li', cursor=1",
|
||||
"SPEECH OUTPUT: '2. arrange long and arbitrary lines of text into ordered lists that are pleasing to the eye and suggest some sense of.'"]))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("Down"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"5. Line Down",
|
||||
["BRAILLE LINE: 'priority, even if it is artificial'",
|
||||
" VISIBLE: 'priority, even if it is artifici', cursor=1",
|
||||
"SPEECH OUTPUT: 'priority, even if it is artificial.'"]))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("Down"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"6. Line Down",
|
||||
["BRAILLE LINE: '3. look really cool when we carry them around on yellow Post-Itstm.'",
|
||||
" VISIBLE: '3. look really cool when we carr', cursor=1",
|
||||
"SPEECH OUTPUT: '3. look really cool when we carry them around on yellow Post-Itstm.'"]))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("Down"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"7. Line Down",
|
||||
["BRAILLE LINE: '4. and that other thing I keep forgetting.'",
|
||||
" VISIBLE: '4. and that other thing I keep f', cursor=1",
|
||||
"SPEECH OUTPUT: '4. and that other thing I keep forgetting.'"]))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("Down"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"8. Line Down",
|
||||
["BRAILLE LINE: 'Your ordered lists can start at a strange number, like:'",
|
||||
" VISIBLE: 'Your ordered lists can start at ', cursor=1",
|
||||
"SPEECH OUTPUT: 'Your ordered lists can start at a strange number, like:'"]))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("Down"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"9. Line Down",
|
||||
["KNOWN ISSUE: Gecko is not exposing this as a roman numeral.",
|
||||
"BRAILLE LINE: '6. And use roman numerals,'",
|
||||
" VISIBLE: '6. And use roman numerals,', cursor=1",
|
||||
"SPEECH OUTPUT: '6. And use roman numerals,.'"]))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("Down"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"10. Line Down",
|
||||
["BRAILLE LINE: 'g. You might try using letters as well,'",
|
||||
" VISIBLE: 'g. You might try using letters a', cursor=1",
|
||||
"SPEECH OUTPUT: 'g. You might try using letters as well,.'"]))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("Down"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"11. Line Down",
|
||||
["BRAILLE LINE: 'H. Maybe you prefer Big Letters,'",
|
||||
" VISIBLE: 'H. Maybe you prefer Big Letters,', cursor=1",
|
||||
"SPEECH OUTPUT: 'H. Maybe you prefer Big Letters,.'"]))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("Down"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"12. Line Down",
|
||||
["KNOWN ISSUE: Gecko is not exposing this as a roman numeral.",
|
||||
"BRAILLE LINE: '9. or small roman numerals'",
|
||||
" VISIBLE: '9. or small roman numerals', cursor=1",
|
||||
"SPEECH OUTPUT: '9. or small roman numerals.'"]))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("Up"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"13. Line Up",
|
||||
["BRAILLE LINE: 'H. Maybe you prefer Big Letters,'",
|
||||
" VISIBLE: 'H. Maybe you prefer Big Letters,', cursor=1",
|
||||
"SPEECH OUTPUT: 'H. Maybe you prefer Big Letters,.'"]))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("Up"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"14. Line Up",
|
||||
["BRAILLE LINE: 'g. You might try using letters as well,'",
|
||||
" VISIBLE: 'g. You might try using letters a', cursor=1",
|
||||
"SPEECH OUTPUT: 'g. You might try using letters as well,.'"]))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("Up"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"15. Line Up",
|
||||
["KNOWN ISSUE: Gecko is not exposing this as a roman numeral.",
|
||||
"BRAILLE LINE: '6. And use roman numerals,'",
|
||||
" VISIBLE: '6. And use roman numerals,', cursor=1",
|
||||
"SPEECH OUTPUT: '6. And use roman numerals,.'"]))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("Up"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"16. Line Up",
|
||||
["BRAILLE LINE: 'Your ordered lists can start at a strange number, like:'",
|
||||
" VISIBLE: 'Your ordered lists can start at ', cursor=1",
|
||||
"SPEECH OUTPUT: 'Your ordered lists can start at a strange number, like:'"]))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("Up"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"17. Line Up",
|
||||
["BRAILLE LINE: '4. and that other thing I keep forgetting.'",
|
||||
" VISIBLE: '4. and that other thing I keep f', cursor=1",
|
||||
"SPEECH OUTPUT: '4. and that other thing I keep forgetting.'"]))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("Up"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"18. Line Up",
|
||||
["BRAILLE LINE: '3. look really cool when we carry them around on yellow Post-Itstm.'",
|
||||
" VISIBLE: '3. look really cool when we carr', cursor=1",
|
||||
"SPEECH OUTPUT: '3. look really cool when we carry them around on yellow Post-Itstm.'"]))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("Up"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"19. Line Up",
|
||||
["BRAILLE LINE: 'priority, even if it is artificial'",
|
||||
" VISIBLE: 'priority, even if it is artifici', cursor=1",
|
||||
"SPEECH OUTPUT: 'priority, even if it is artificial.'"]))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("Up"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"20. Line Up",
|
||||
["BRAILLE LINE: '2. arrange long and arbitrary lines of text into ordered lists that are pleasing to the eye and suggest some sense of'",
|
||||
" VISIBLE: '2. arrange long and arbitrary li', cursor=1",
|
||||
"SPEECH OUTPUT: '2. arrange long and arbitrary lines of text into ordered lists that are pleasing to the eye and suggest some sense of.'"]))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("Up"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"21. Line Up",
|
||||
["BRAILLE LINE: '1. remember what the heck we are doing each day'",
|
||||
" VISIBLE: '1. remember what the heck we are', cursor=1",
|
||||
"SPEECH OUTPUT: '1. remember what the heck we are doing each day.'"]))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("Up"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"22. Line Up",
|
||||
["BRAILLE LINE: 'Lists are not only fun to make, they are fun to use. They help us:'",
|
||||
" VISIBLE: 'Lists are not only fun to make, ', cursor=1",
|
||||
"SPEECH OUTPUT: 'Lists are not only fun to make, they are fun to use. They help us:'"]))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("Up"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"23. Line Up",
|
||||
["BRAILLE LINE: 'Welcome to a List of Lists h1'",
|
||||
" VISIBLE: 'Welcome to a List of Lists h1', cursor=1",
|
||||
"SPEECH OUTPUT: 'Welcome to a List of Lists heading level 1'"]))
|
||||
|
||||
sequence.append(utils.AssertionSummaryAction())
|
||||
sequence.start()
|
Reference in New Issue
Block a user