1029 lines
43 KiB
Python
1029 lines
43 KiB
Python
|
#!/usr/bin/python
|
||
|
|
||
|
"""Test of line navigation."""
|
||
|
|
||
|
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(PauseAction(3000))
|
||
|
sequence.append(KeyComboAction("Tab"))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("<Control>Home"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"1. Ctrl+Home",
|
||
|
["BRAILLE LINE: 'Home News Projects Art Support Development Community'",
|
||
|
" VISIBLE: 'Home News Projects Art Support D', cursor=1",
|
||
|
"SPEECH OUTPUT: 'Home'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: 'News'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: 'Projects'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: 'Art'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: 'Support'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: 'Development'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: 'Community'",
|
||
|
"SPEECH OUTPUT: 'link.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"2. Line Down",
|
||
|
["BRAILLE LINE: 'live.gnome.org h1 Search $l Titles push button Text push button'",
|
||
|
" VISIBLE: 'live.gnome.org h1 Search $l Tit', cursor=1",
|
||
|
"SPEECH OUTPUT: 'live.gnome.org heading level 1'",
|
||
|
"SPEECH OUTPUT: 'entry Search.'",
|
||
|
"SPEECH OUTPUT: 'Titles push button'",
|
||
|
"SPEECH OUTPUT: 'Text push button'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"3. Line Down",
|
||
|
["BRAILLE LINE: 'Home RecentChanges FindPage HelpContents Cthulhu'",
|
||
|
" VISIBLE: 'Home RecentChanges FindPage Help', cursor=1",
|
||
|
"SPEECH OUTPUT: 'Home'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: 'RecentChanges'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: 'FindPage'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: 'HelpContents'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: 'Cthulhu'",
|
||
|
"SPEECH OUTPUT: 'link.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"4. Line Down",
|
||
|
["BRAILLE LINE: 'en Español'",
|
||
|
" VISIBLE: 'en Español', cursor=1",
|
||
|
"SPEECH OUTPUT: 'en Español'",
|
||
|
"SPEECH OUTPUT: 'link.'"]))
|
||
|
|
||
|
sequence.append(PauseAction(3000))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"5. Line Down",
|
||
|
["BRAILLE LINE: 'Home | Download/Installation | Configuration/Use | Accessible Applications | Mailing List \\('",
|
||
|
" VISIBLE: 'Home | Download/Installation | C', cursor=1",
|
||
|
"SPEECH OUTPUT: 'Home'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: '|'",
|
||
|
"SPEECH OUTPUT: 'Download/Installation'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: '|'",
|
||
|
"SPEECH OUTPUT: 'Configuration/Use'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: '|'",
|
||
|
"SPEECH OUTPUT: 'Accessible Applications'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: '|'",
|
||
|
"SPEECH OUTPUT: 'Mailing List'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: '('"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"6. Line Down",
|
||
|
["BRAILLE LINE: 'Archives\\) | FAQ | DocIndex'",
|
||
|
" VISIBLE: 'Archives\\) | FAQ | DocIndex', cursor=1",
|
||
|
"SPEECH OUTPUT: 'Archives'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: ') |'",
|
||
|
"SPEECH OUTPUT: 'FAQ'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: '|'",
|
||
|
"SPEECH OUTPUT: 'DocIndex'",
|
||
|
"SPEECH OUTPUT: 'link.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"7. Line Down",
|
||
|
["BRAILLE LINE: 'Welcome to Cthulhu! h1'",
|
||
|
" VISIBLE: 'Welcome to Cthulhu! h1', cursor=1",
|
||
|
"SPEECH OUTPUT: 'Welcome to Cthulhu! heading level 1'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"8. Line Down",
|
||
|
["BRAILLE LINE: 'Cthulhu Logo'",
|
||
|
" VISIBLE: 'Cthulhu Logo', cursor=1",
|
||
|
"SPEECH OUTPUT: 'Cthulhu Logo link.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"9. Line Down",
|
||
|
["BRAILLE LINE: 'HOT HOT HOT: Notes on access to Firefox 3.0'",
|
||
|
" VISIBLE: 'HOT HOT HOT: Notes on access to ', cursor=1",
|
||
|
"SPEECH OUTPUT: 'HOT HOT HOT: Notes on'",
|
||
|
"SPEECH OUTPUT: 'access to Firefox 3.0'",
|
||
|
"SPEECH OUTPUT: 'link.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"10. Line Down",
|
||
|
["BRAILLE LINE: 'Contents'",
|
||
|
" VISIBLE: 'Contents', cursor=1",
|
||
|
"SPEECH OUTPUT: 'Contents'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"11. Line Down",
|
||
|
["BRAILLE LINE: '1. Welcome to Cthulhu!'",
|
||
|
" VISIBLE: '1. Welcome to Cthulhu!', cursor=1",
|
||
|
"SPEECH OUTPUT: '1.'",
|
||
|
"SPEECH OUTPUT: 'Welcome to Cthulhu!'",
|
||
|
"SPEECH OUTPUT: 'link.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"12. Line Down",
|
||
|
["BRAILLE LINE: '2. About'",
|
||
|
" VISIBLE: '2. About', cursor=1",
|
||
|
"SPEECH OUTPUT: '2.'",
|
||
|
"SPEECH OUTPUT: 'About'",
|
||
|
"SPEECH OUTPUT: 'link.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"13. Line Down",
|
||
|
["BRAILLE LINE: '3. Audio Guides'",
|
||
|
" VISIBLE: '3. Audio Guides', cursor=1",
|
||
|
"SPEECH OUTPUT: '3.'",
|
||
|
"SPEECH OUTPUT: 'Audio Guides'",
|
||
|
"SPEECH OUTPUT: 'link.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"14. Line Down",
|
||
|
["BRAILLE LINE: '4. Download/Installation'",
|
||
|
" VISIBLE: '4. Download/Installation', cursor=1",
|
||
|
"SPEECH OUTPUT: '4.'",
|
||
|
"SPEECH OUTPUT: 'Download/Installation'",
|
||
|
"SPEECH OUTPUT: 'link.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"15. Line Down",
|
||
|
["BRAILLE LINE: '5. Configuration/Use'",
|
||
|
" VISIBLE: '5. Configuration/Use', cursor=1",
|
||
|
"SPEECH OUTPUT: '5.'",
|
||
|
"SPEECH OUTPUT: 'Configuration/Use'",
|
||
|
"SPEECH OUTPUT: 'link.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"16. Line Down",
|
||
|
["BRAILLE LINE: '6. Accessible Applications'",
|
||
|
" VISIBLE: '6. Accessible Applications', cursor=1",
|
||
|
"SPEECH OUTPUT: '6.'",
|
||
|
"SPEECH OUTPUT: 'Accessible Applications'",
|
||
|
"SPEECH OUTPUT: 'link.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"17. Line Down",
|
||
|
["BRAILLE LINE: '7. How Can I Help?'",
|
||
|
" VISIBLE: '7. How Can I Help?', cursor=4",
|
||
|
"SPEECH OUTPUT: '7.'",
|
||
|
"SPEECH OUTPUT: 'How Can I Help?'",
|
||
|
"SPEECH OUTPUT: 'link.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"18. Line Down",
|
||
|
["BRAILLE LINE: '8. More Information'",
|
||
|
" VISIBLE: '8. More Information', cursor=1",
|
||
|
"SPEECH OUTPUT: '8.'",
|
||
|
"SPEECH OUTPUT: 'More Information'",
|
||
|
"SPEECH OUTPUT: 'link.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"19. Line Down",
|
||
|
["BRAILLE LINE: 'About h1'",
|
||
|
" VISIBLE: 'About h1', cursor=1",
|
||
|
"SPEECH OUTPUT: 'About heading level 1'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"20. Line Down",
|
||
|
["BRAILLE LINE: 'Cthulhu is a free, open source, flexible, extensible, and'",
|
||
|
" VISIBLE: 'Cthulhu is a free, open source, fle', cursor=1",
|
||
|
"SPEECH OUTPUT: 'Cthulhu is a free, open source, flexible, extensible, and'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"21. Line Down",
|
||
|
["BRAILLE LINE: 'powerful assistive technology for people with visual'",
|
||
|
" VISIBLE: 'powerful assistive technology fo', cursor=1",
|
||
|
"SPEECH OUTPUT: 'powerful assistive technology for people with visual'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"22. Line Down",
|
||
|
["BRAILLE LINE: 'impairments. Using various combinations of speech'",
|
||
|
" VISIBLE: 'impairments. Using various combi', cursor=1",
|
||
|
"SPEECH OUTPUT: 'impairments. Using various combinations of speech'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"23. Line Down",
|
||
|
["BRAILLE LINE: 'synthesis, braille, and magnification, Cthulhu helps provide'",
|
||
|
" VISIBLE: 'synthesis, braille, and magnific', cursor=1",
|
||
|
"SPEECH OUTPUT: 'synthesis, braille, and magnification, Cthulhu helps provide'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"24. Line Down",
|
||
|
["BRAILLE LINE: 'access to applications and toolkits that support the AT-SPI'",
|
||
|
" VISIBLE: 'access to applications and toolk', cursor=1",
|
||
|
"SPEECH OUTPUT: 'access to applications and toolkits that support the AT-SPI'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"25. Line Down",
|
||
|
["BRAILLE LINE: '(e.g., the GNOME desktop). The development of Cthulhu has'",
|
||
|
" VISIBLE: '(e.g., the GNOME desktop). The d', cursor=1",
|
||
|
"SPEECH OUTPUT: '(e.g., the GNOME desktop). The development of Cthulhu has'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"26. Line Down",
|
||
|
["BRAILLE LINE: 'been led by the Accessibility Program Office of Sun'",
|
||
|
" VISIBLE: 'been led by the Accessibility Pr', cursor=1",
|
||
|
"SPEECH OUTPUT: 'been led by the'",
|
||
|
"SPEECH OUTPUT: 'Accessibility Program Office of Sun'",
|
||
|
"SPEECH OUTPUT: 'link.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"27. Line Down",
|
||
|
["BRAILLE LINE: 'Microsystems, Inc. with contributions from many'",
|
||
|
" VISIBLE: 'Microsystems, Inc. with contribu', cursor=1",
|
||
|
"SPEECH OUTPUT: 'Microsystems, Inc.'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: 'with'",
|
||
|
"SPEECH OUTPUT: 'contributions from many'",
|
||
|
"SPEECH OUTPUT: 'link.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"28. Line Down",
|
||
|
["BRAILLE LINE: 'community members.'",
|
||
|
" VISIBLE: 'community members.', cursor=1",
|
||
|
"SPEECH OUTPUT: 'community members'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: '.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"29. Line Down",
|
||
|
["BRAILLE LINE: 'The complete list of work to do, including bugs and feature requests, along with known'",
|
||
|
" VISIBLE: 'The complete list of work to do,', cursor=1",
|
||
|
"SPEECH OUTPUT: 'The complete list of work to do, including bugs and feature requests, along with known'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"30. Line Down",
|
||
|
["BRAILLE LINE: 'problems in other components, is maintained in Bugzilla \\(please see our notes on how'",
|
||
|
" VISIBLE: 'problems in other components, is', cursor=1",
|
||
|
"SPEECH OUTPUT: 'problems in other components, is maintained in'",
|
||
|
"SPEECH OUTPUT: 'Bugzilla'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: '\\(please see our'",
|
||
|
"SPEECH OUTPUT: 'notes on how'",
|
||
|
"SPEECH OUTPUT: 'link.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"31. Line Down",
|
||
|
["BRAILLE LINE: 'we use Bugzilla\\).'",
|
||
|
" VISIBLE: 'we use Bugzilla\\).', cursor=1",
|
||
|
"SPEECH OUTPUT: 'we use Bugzilla'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: '\\).'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"32. Line Down",
|
||
|
["BRAILLE LINE: 'Please join and participate on the Cthulhu mailing list (archives): it's a helpful, kind, and'",
|
||
|
" VISIBLE: 'Please join and participate on t', cursor=1",
|
||
|
"SPEECH OUTPUT: 'Please join and participate on the'",
|
||
|
"SPEECH OUTPUT: 'Cthulhu mailing list'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: '('",
|
||
|
"SPEECH OUTPUT: 'archives'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: '): it's a helpful, kind, and'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"33. Line Down",
|
||
|
["BRAILLE LINE: 'productive environment composed of users and developers.'",
|
||
|
" VISIBLE: 'productive environment composed ', cursor=1",
|
||
|
"SPEECH OUTPUT: 'productive environment composed of users and developers.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"34. Line Down",
|
||
|
["BRAILLE LINE: 'Audio Guides h1'",
|
||
|
" VISIBLE: 'Audio Guides h1', cursor=1",
|
||
|
"SPEECH OUTPUT: 'Audio Guides heading level 1'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"35. Line Down",
|
||
|
["BRAILLE LINE: 'Darragh Ó Héiligh has created several audio guides for Cthulhu. This is a fantastic'",
|
||
|
" VISIBLE: 'Darragh Ó Héiligh has created se', cursor=1",
|
||
|
"SPEECH OUTPUT: 'Darragh Ó Héiligh'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: 'has created several audio guides for Cthulhu. This is a fantastic'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"36. Line Down",
|
||
|
["BRAILLE LINE: 'contribution (THANKS!)!!! The audio guides can be found at'",
|
||
|
" VISIBLE: 'contribution (THANKS!)!!! The au', cursor=1",
|
||
|
"SPEECH OUTPUT: 'contribution (THANKS!)!!! The audio guides can be found at'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"37. Line Down",
|
||
|
["BRAILLE LINE: 'http://www.digitaldarragh.com/linuxat.asp and include the following:'",
|
||
|
" VISIBLE: 'http://www.digitaldarragh.com/li', cursor=1",
|
||
|
"SPEECH OUTPUT: 'http://www.digitaldarragh.com/linuxat.asp'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: 'and include the following:'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"38. Line Down",
|
||
|
["BRAILLE LINE: '• Walk through of the installation of Ubuntu 7.4. Very helpful tutorial'",
|
||
|
" VISIBLE: '• Walk through of the installati', cursor=1",
|
||
|
"SPEECH OUTPUT: '•.'",
|
||
|
"SPEECH OUTPUT: 'Walk through of the installation of Ubuntu 7.4. Very helpful tutorial'",
|
||
|
"SPEECH OUTPUT: 'link.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"39. Line Down",
|
||
|
["BRAILLE LINE: '• Review of Fedora 7 and the Cthulhu screen reader for the Gnome graphical desktop'",
|
||
|
" VISIBLE: '• Review of Fedora 7 and the Orc', cursor=1",
|
||
|
"SPEECH OUTPUT: '•.'",
|
||
|
"SPEECH OUTPUT: 'Review of Fedora 7 and the Cthulhu screen reader for the Gnome graphical desktop'",
|
||
|
"SPEECH OUTPUT: 'link.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"40. Line Down",
|
||
|
["BRAILLE LINE: '• Guide to installing the latest versions of Firefox and Cthulhu'",
|
||
|
" VISIBLE: '• Guide to installing the latest', cursor=1",
|
||
|
"SPEECH OUTPUT: '•.'",
|
||
|
"SPEECH OUTPUT: 'Guide to installing the latest versions of Firefox and Cthulhu'",
|
||
|
"SPEECH OUTPUT: 'link.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"41. Line Down",
|
||
|
["BRAILLE LINE: 'Download/Installation h1'",
|
||
|
" VISIBLE: 'Download/Installation h1', cursor=1",
|
||
|
"SPEECH OUTPUT: 'Download/Installation heading level 1'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"42. Line Down",
|
||
|
["BRAILLE LINE: 'As of GNOME 2.16, Cthulhu is a part of the GNOME platform. As a result, Cthulhu is already'",
|
||
|
" VISIBLE: 'As of GNOME 2.16, Cthulhu is a part', cursor=1",
|
||
|
"SPEECH OUTPUT: 'As of GNOME 2.16, Cthulhu is a part of the GNOME platform. As a result, Cthulhu is already'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"43. Line Down",
|
||
|
["BRAILLE LINE: 'provided by default on a number of operating system distributions, including Open'",
|
||
|
" VISIBLE: 'provided by default on a number ', cursor=1",
|
||
|
"SPEECH OUTPUT: 'provided by default on a number of operating system distributions, including'",
|
||
|
"SPEECH OUTPUT: 'Open'",
|
||
|
"SPEECH OUTPUT: 'link.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"44. Line Down",
|
||
|
["BRAILLE LINE: 'Solaris and Ubuntu.'",
|
||
|
" VISIBLE: 'Solaris and Ubuntu.', cursor=1",
|
||
|
"SPEECH OUTPUT: 'Solaris'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: 'and'",
|
||
|
"SPEECH OUTPUT: 'Ubuntu'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: '.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"45. Line Down",
|
||
|
["BRAILLE LINE: 'Please also refer to the Download/Installation page for detailed information on various'",
|
||
|
" VISIBLE: 'Please also refer to the Downloa', cursor=1",
|
||
|
"SPEECH OUTPUT: 'Please also refer to the'",
|
||
|
"SPEECH OUTPUT: 'Download/Installation page'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: 'for detailed information on various'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"46. Line Down",
|
||
|
["BRAILLE LINE: 'distributions as well as installing Cthulhu directly from source.'",
|
||
|
" VISIBLE: 'distributions as well as install', cursor=1",
|
||
|
"SPEECH OUTPUT: 'distributions as well as installing Cthulhu directly from source.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"47. Line Down",
|
||
|
["BRAILLE LINE: 'Configuration/Use h1'",
|
||
|
" VISIBLE: 'Configuration/Use h1', cursor=1",
|
||
|
"SPEECH OUTPUT: 'Configuration/Use heading level 1'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"48. Line Down",
|
||
|
["BRAILLE LINE: 'The command to run cthulhu is cthulhu. You can enter this command by pressing Alt+F2'",
|
||
|
" VISIBLE: 'The command to run cthulhu is cthulhu.', cursor=1",
|
||
|
"SPEECH OUTPUT: 'The command to run cthulhu is cthulhu. You can enter this command by pressing Alt+F2'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"49. Line Down",
|
||
|
["BRAILLE LINE: 'when logged in, waiting for a second or so, then typing cthulhu and pressing return. Cthulhu is'",
|
||
|
" VISIBLE: 'when logged in, waiting for a se', cursor=1",
|
||
|
"SPEECH OUTPUT: 'when logged in, waiting for a second or so, then typing cthulhu and pressing return. Cthulhu is'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"50. Line Down",
|
||
|
["BRAILLE LINE: 'designed to present information as you navigate the desktop using the built-in navigation'",
|
||
|
" VISIBLE: 'designed to present information ', cursor=1",
|
||
|
"SPEECH OUTPUT: 'designed to present information as you navigate the desktop using the'",
|
||
|
"SPEECH OUTPUT: 'built-in navigation'",
|
||
|
"SPEECH OUTPUT: 'link.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"51. Line Down",
|
||
|
["BRAILLE LINE: 'mechanisms of GNOME. These navigation mechanisms are consistent across most'",
|
||
|
" VISIBLE: 'mechanisms of GNOME. These navig', cursor=1",
|
||
|
"SPEECH OUTPUT: 'mechanisms of GNOME'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: '. These navigation mechanisms are consistent across most'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"52. Line Down",
|
||
|
["BRAILLE LINE: 'desktop applications.'",
|
||
|
" VISIBLE: 'desktop applications.', cursor=1",
|
||
|
"SPEECH OUTPUT: 'desktop applications.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"53. Line Down",
|
||
|
["BRAILLE LINE: 'You may sometimes wish to control Cthulhu itself, such as bringing up the Cthulhu'",
|
||
|
" VISIBLE: 'You may sometimes wish to contro', cursor=1",
|
||
|
"SPEECH OUTPUT: 'You may sometimes wish to control Cthulhu itself, such as bringing up the'",
|
||
|
"SPEECH OUTPUT: 'Cthulhu'",
|
||
|
"SPEECH OUTPUT: 'link.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"54. Line Down",
|
||
|
["BRAILLE LINE: 'Configuration GUI (accessed by pressing Insert+Space when Cthulhu is running) and for'",
|
||
|
" VISIBLE: 'Configuration GUI (accessed by p', cursor=1",
|
||
|
"SPEECH OUTPUT: 'Configuration GUI'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: '(accessed by pressing Insert+Space when Cthulhu is running) and for'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"55. Line Down",
|
||
|
["BRAILLE LINE: 'using flat review mode to examine a window. Refer to Cthulhu Keyboard Commands \\(Laptop'",
|
||
|
" VISIBLE: 'using flat review mode to examin', cursor=1",
|
||
|
"SPEECH OUTPUT: 'using flat review mode to examine a window. Refer to'",
|
||
|
"SPEECH OUTPUT: 'Cthulhu Keyboard Commands'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: '\\(Laptop'",
|
||
|
"SPEECH OUTPUT: 'link.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"56. Line Down",
|
||
|
["BRAILLE LINE: 'Layout\\) for more information on Cthulhu-specific keyboard commands. The Cthulhu'",
|
||
|
" VISIBLE: 'Layout\\) for more information on ', cursor=1",
|
||
|
"SPEECH OUTPUT: 'Layout\\)'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: 'for more information on Cthulhu-specific keyboard commands. The'",
|
||
|
"SPEECH OUTPUT: 'Cthulhu'",
|
||
|
"SPEECH OUTPUT: 'link.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"57. Line Down",
|
||
|
["BRAILLE LINE: 'Configuration GUI also includes a \"Key Bindings\" tab that allows you to get a complete list'",
|
||
|
" VISIBLE: 'Configuration GUI also includes ', cursor=1",
|
||
|
"SPEECH OUTPUT: 'Configuration GUI'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: 'also includes a \"Key Bindings\" tab that allows you to get a complete list'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"58. Line Down",
|
||
|
["BRAILLE LINE: 'of Cthulhu key bindings.'",
|
||
|
" VISIBLE: 'of Cthulhu key bindings.', cursor=1",
|
||
|
"SPEECH OUTPUT: 'of Cthulhu key bindings.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"59. Line Down",
|
||
|
["BRAILLE LINE: 'Please also refer to the Configuration/Use page for detailed information.'",
|
||
|
" VISIBLE: 'Please also refer to the Configu', cursor=1",
|
||
|
"SPEECH OUTPUT: 'Please also refer to the'",
|
||
|
"SPEECH OUTPUT: 'Configuration/Use page'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: 'for detailed information.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"60. Line Down",
|
||
|
["BRAILLE LINE: 'Accessible Applications h1'",
|
||
|
" VISIBLE: 'Accessible Applications h1', cursor=1",
|
||
|
"SPEECH OUTPUT: 'Accessible Applications heading level 1'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"61. Line Down",
|
||
|
["BRAILLE LINE: 'Cthulhu is designed to work with applications and toolkits that support the assistive'",
|
||
|
" VISIBLE: 'Cthulhu is designed to work with ap', cursor=1",
|
||
|
"SPEECH OUTPUT: 'Cthulhu is designed to work with applications and toolkits that support the assistive'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"62. Line Down",
|
||
|
["BRAILLE LINE: 'technology service provider interface (AT-SPI). This includes the GNOME desktop and its'",
|
||
|
" VISIBLE: 'technology service provider inte', cursor=1",
|
||
|
"SPEECH OUTPUT: 'technology service provider interface (AT-SPI). This includes the GNOME desktop and its'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"63. Line Down",
|
||
|
["BRAILLE LINE: 'applications, OpenOffice, Firefox, and the Java platform. Some applications work better'",
|
||
|
" VISIBLE: 'applications, OpenOffice, Firefo', cursor=1",
|
||
|
"SPEECH OUTPUT: 'applications,'",
|
||
|
"SPEECH OUTPUT: 'OpenOffice'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: ', Firefox, and the Java platform. Some applications work better'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"64. Line Down",
|
||
|
["BRAILLE LINE: 'than others, however, and the Cthulhu community continually works to provide compelling'",
|
||
|
" VISIBLE: 'than others, however, and the Or', cursor=1",
|
||
|
"SPEECH OUTPUT: 'than others, however, and the Cthulhu community continually works to provide compelling'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"65. Line Down",
|
||
|
["BRAILLE LINE: 'access to more and more applications.'",
|
||
|
" VISIBLE: 'access to more and more applicat', cursor=1",
|
||
|
"SPEECH OUTPUT: 'access to more and more applications.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"66. Line Down",
|
||
|
["BRAILLE LINE: 'On the Accessible Applications page, you will find a growing list of information regarding'",
|
||
|
" VISIBLE: 'On the Accessible Applications p', cursor=1",
|
||
|
"SPEECH OUTPUT: 'On the'",
|
||
|
"SPEECH OUTPUT: 'Accessible Applications page'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: ', you will find a growing list of information regarding'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"67. Line Down",
|
||
|
["BRAILLE LINE: 'various applications that can be accessed with Cthulhu as well as tips and tricks for using'",
|
||
|
" VISIBLE: 'various applications that can be', cursor=1",
|
||
|
"SPEECH OUTPUT: 'various applications that can be accessed with Cthulhu as well as tips and tricks for using'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"68. Line Down",
|
||
|
["BRAILLE LINE: 'them. The list is not to be a conclusive list of all applications. Rather, the goal is to provide'",
|
||
|
" VISIBLE: 'them. The list is not to be a co', cursor=1",
|
||
|
"SPEECH OUTPUT: 'them. The list is not to be a conclusive list of all applications. Rather, the goal is to provide'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"69. Line Down",
|
||
|
["BRAILLE LINE: 'a repository within which users can share experiences regarding applications they have'",
|
||
|
" VISIBLE: 'a repository within which users ', cursor=1",
|
||
|
"SPEECH OUTPUT: 'a repository within which users can share experiences regarding applications they have'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"70. Line Down",
|
||
|
["BRAILLE LINE: 'tested.'",
|
||
|
" VISIBLE: 'tested.', cursor=1",
|
||
|
"SPEECH OUTPUT: 'tested.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"71. Line Down",
|
||
|
["BRAILLE LINE: 'See also the Application Specific Settings page for how to configure settings specific to an'",
|
||
|
" VISIBLE: 'See also the Application Specifi', cursor=1",
|
||
|
"SPEECH OUTPUT: 'See also the'",
|
||
|
"SPEECH OUTPUT: 'Application Specific Settings'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: 'page for how to configure settings specific to an'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"72. Line Down",
|
||
|
["BRAILLE LINE: 'application.'",
|
||
|
" VISIBLE: 'application.', cursor=1",
|
||
|
"SPEECH OUTPUT: 'application.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"73. Line Down",
|
||
|
["BRAILLE LINE: 'Please also refer to the Accessible Applications page for detailed information.'",
|
||
|
" VISIBLE: 'Please also refer to the Accessi', cursor=1",
|
||
|
"SPEECH OUTPUT: 'Please also refer to the'",
|
||
|
"SPEECH OUTPUT: 'Accessible Applications page'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: 'for detailed information.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"74. Line Down",
|
||
|
["BRAILLE LINE: 'How Can I Help? h1'",
|
||
|
" VISIBLE: 'How Can I Help? h1', cursor=1",
|
||
|
"SPEECH OUTPUT: 'How Can I Help? heading level 1'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"75. Line Down",
|
||
|
["BRAILLE LINE: 'There's a bunch you can do! Please refer to the How Can I Help page for detailed'",
|
||
|
" VISIBLE: 'There's a bunch you can do! Plea', cursor=1",
|
||
|
"SPEECH OUTPUT: 'There's a bunch you can do! Please refer to the'",
|
||
|
"SPEECH OUTPUT: 'How Can I Help page'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: 'for detailed'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"76. Line Down",
|
||
|
["BRAILLE LINE: 'information.'",
|
||
|
" VISIBLE: 'information.', cursor=1",
|
||
|
"SPEECH OUTPUT: 'information.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"77. Line Down",
|
||
|
["BRAILLE LINE: 'More Information h1'",
|
||
|
" VISIBLE: 'More Information h1', cursor=1",
|
||
|
"SPEECH OUTPUT: 'More Information heading level 1'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"78. Line Down",
|
||
|
["BRAILLE LINE: '• Frequently Asked Questions: FAQ'",
|
||
|
" VISIBLE: '• Frequently Asked Questions: FA', cursor=1",
|
||
|
"SPEECH OUTPUT: '•.'",
|
||
|
"SPEECH OUTPUT: 'Frequently Asked Questions:'",
|
||
|
"SPEECH OUTPUT: 'FAQ'",
|
||
|
"SPEECH OUTPUT: 'link.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"79. Line Down",
|
||
|
["BRAILLE LINE: '• Mailing list: cthulhu-list@gnome.org (Archives)'",
|
||
|
" VISIBLE: '• Mailing list: cthulhu-list@gnome.', cursor=1",
|
||
|
"SPEECH OUTPUT: '•.'",
|
||
|
"SPEECH OUTPUT: 'Mailing list:'",
|
||
|
"SPEECH OUTPUT: 'cthulhu-list@gnome.org'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: '('",
|
||
|
"SPEECH OUTPUT: 'Archives'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: ')'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"80. Line Down",
|
||
|
["BRAILLE LINE: '• Bug database: GNOME Bug Tracking System (Bugzilla) (current bug list)'",
|
||
|
" VISIBLE: '• Bug database: GNOME Bug Tracki', cursor=1",
|
||
|
"SPEECH OUTPUT: '•.'",
|
||
|
"SPEECH OUTPUT: 'Bug database:'",
|
||
|
"SPEECH OUTPUT: 'GNOME Bug Tracking System (Bugzilla)'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: '('",
|
||
|
"SPEECH OUTPUT: 'current bug list'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: ')'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"81. Line Down",
|
||
|
["BRAILLE LINE: '• Design documents: Cthulhu Documentation Series'",
|
||
|
" VISIBLE: '• Design documents: Cthulhu Documen', cursor=1",
|
||
|
"SPEECH OUTPUT: '•.'",
|
||
|
"SPEECH OUTPUT: 'Design documents:'",
|
||
|
"SPEECH OUTPUT: 'Cthulhu Documentation Series'",
|
||
|
"SPEECH OUTPUT: 'link.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"82. Line Down",
|
||
|
["BRAILLE LINE: '• Dive Into Python, Mark Pilgrim'",
|
||
|
" VISIBLE: '• Dive Into Python, Mark Pilgrim', cursor=1",
|
||
|
"SPEECH OUTPUT: '•.'",
|
||
|
"SPEECH OUTPUT: 'Dive Into Python, Mark Pilgrim'",
|
||
|
"SPEECH OUTPUT: 'link.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"83. Line Down",
|
||
|
["BRAILLE LINE: '• Python in a Nutshell, Alex Martelli'",
|
||
|
" VISIBLE: '• Python in a Nutshell, Alex Mar', cursor=1",
|
||
|
"SPEECH OUTPUT: '•.'",
|
||
|
"SPEECH OUTPUT: 'Python in a Nutshell, Alex Martelli'",
|
||
|
"SPEECH OUTPUT: 'link.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"84. Line Down",
|
||
|
["BRAILLE LINE: '• Python Pocket Reference, Mark Lutz'",
|
||
|
" VISIBLE: '• Python Pocket Reference, Mark ', cursor=1",
|
||
|
"SPEECH OUTPUT: '•.'",
|
||
|
"SPEECH OUTPUT: 'Python Pocket Reference, Mark Lutz'",
|
||
|
"SPEECH OUTPUT: 'link.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"85. Line Down",
|
||
|
["BRAILLE LINE: 'separator'",
|
||
|
" VISIBLE: 'separator', cursor=1",
|
||
|
"SPEECH OUTPUT: 'separator'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"86. Line Down",
|
||
|
["BRAILLE LINE: 'The information on this page and the other Cthulhu-related pages on this site are distributed'",
|
||
|
" VISIBLE: 'The information on this page and', cursor=1",
|
||
|
"SPEECH OUTPUT: 'The information on this page and the other Cthulhu-related pages on this site are distributed'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"87. Line Down",
|
||
|
["BRAILLE LINE: 'in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied'",
|
||
|
" VISIBLE: 'in the hope that it will be usef', cursor=1",
|
||
|
"SPEECH OUTPUT: 'in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"88. Line Down",
|
||
|
["BRAILLE LINE: 'warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.'",
|
||
|
" VISIBLE: 'warranty of MERCHANTABILITY or F', cursor=1",
|
||
|
"SPEECH OUTPUT: 'warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"89. Line Down",
|
||
|
["BRAILLE LINE: 'separator'",
|
||
|
" VISIBLE: 'separator', cursor=1",
|
||
|
"SPEECH OUTPUT: 'separator'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"90. Line Down",
|
||
|
["BRAILLE LINE: 'CategoryAccessibility'",
|
||
|
" VISIBLE: 'CategoryAccessibility', cursor=1",
|
||
|
"SPEECH OUTPUT: 'CategoryAccessibility'",
|
||
|
"SPEECH OUTPUT: 'link.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"91. Line Down",
|
||
|
["BRAILLE LINE: 'Cthulhu (last edited 2007-12-07 22:09:22 by WillieWalker)'",
|
||
|
" VISIBLE: 'Cthulhu (last edited 2007-12-07 22:', cursor=1",
|
||
|
"SPEECH OUTPUT: 'Cthulhu (last edited 2007-12-07 22:09:22 by'",
|
||
|
"SPEECH OUTPUT: 'WillieWalker'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: ')'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"92. Line Down",
|
||
|
["BRAILLE LINE: 'User h3'",
|
||
|
" VISIBLE: 'User h3', cursor=1",
|
||
|
"SPEECH OUTPUT: 'User heading level 3'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"93. Line Down",
|
||
|
["BRAILLE LINE: 'Login'",
|
||
|
" VISIBLE: 'Login', cursor=1",
|
||
|
"SPEECH OUTPUT: 'Login'",
|
||
|
"SPEECH OUTPUT: 'link.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"94. Line Down",
|
||
|
["BRAILLE LINE: 'Page h3'",
|
||
|
" VISIBLE: 'Page h3', cursor=1",
|
||
|
"SPEECH OUTPUT: 'Page heading level 3'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"95. Line Down",
|
||
|
["BRAILLE LINE: 'Immutable Page'",
|
||
|
" VISIBLE: 'Immutable Page', cursor=1",
|
||
|
"SPEECH OUTPUT: 'Immutable Page.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"96. Line Down",
|
||
|
["BRAILLE LINE: 'Info'",
|
||
|
" VISIBLE: 'Info', cursor=1",
|
||
|
"SPEECH OUTPUT: 'Info'",
|
||
|
"SPEECH OUTPUT: 'link.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"97. Line Down",
|
||
|
["BRAILLE LINE: 'Attachments'",
|
||
|
" VISIBLE: 'Attachments', cursor=1",
|
||
|
"SPEECH OUTPUT: 'Attachments'",
|
||
|
"SPEECH OUTPUT: 'link.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"98. Line Down",
|
||
|
["BRAILLE LINE: 'More Actions: combo box'",
|
||
|
" VISIBLE: 'More Actions: combo box', cursor=1",
|
||
|
"SPEECH OUTPUT: 'More Actions: combo box.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"99. Line Down",
|
||
|
["BRAILLE LINE: 'GNOME World h3'",
|
||
|
" VISIBLE: 'GNOME World h3', cursor=1",
|
||
|
"SPEECH OUTPUT: 'GNOME World heading level 3'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"100. Line Down",
|
||
|
["BRAILLE LINE: 'Wide h3'",
|
||
|
" VISIBLE: 'Wide h3', cursor=1",
|
||
|
"SPEECH OUTPUT: 'Wide heading level 3'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"101. Line Down",
|
||
|
["BRAILLE LINE: 'GnomeWorldWide image'",
|
||
|
" VISIBLE: 'GnomeWorldWide image', cursor=1",
|
||
|
"SPEECH OUTPUT: 'GnomeWorldWide image link'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"102. Line Down",
|
||
|
["BRAILLE LINE: 'Copyright \xa9 2005, 2006, 2007 The GNOME Project.'",
|
||
|
" VISIBLE: 'Copyright \xa9 2005, 2006, 2007 The', cursor=1",
|
||
|
"SPEECH OUTPUT: 'Copyright \xa9 2005, 2006, 2007'",
|
||
|
"SPEECH OUTPUT: 'The GNOME Project'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: '.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"103. Line Down",
|
||
|
["BRAILLE LINE: 'Hosted by Red Hat.'",
|
||
|
" VISIBLE: 'Hosted by Red Hat.', cursor=1",
|
||
|
"SPEECH OUTPUT: 'Hosted by'",
|
||
|
"SPEECH OUTPUT: 'Red Hat'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: '.'"]))
|
||
|
|
||
|
sequence.append(utils.AssertionSummaryAction())
|
||
|
sequence.start()
|