Make sure all files that should be present are present.
This commit is contained in:
57
test/keystrokes/firefox/aria_editor_navigation_dojo.py
Normal file
57
test/keystrokes/firefox/aria_editor_navigation_dojo.py
Normal file
@ -0,0 +1,57 @@
|
||||
#!/usr/bin/python
|
||||
|
||||
"""Test navigation out of the Dojo editor."""
|
||||
|
||||
from macaroon.playback import *
|
||||
import utils
|
||||
|
||||
sequence = MacroSequence()
|
||||
|
||||
#sequence.append(WaitForDocLoad())
|
||||
sequence.append(PauseAction(5000))
|
||||
sequence.append(PauseAction(3000))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("Up"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"1. Up Arrow in Focus Mode - which should do nothing",
|
||||
[""]))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyPressAction(0, None, "KP_Insert"))
|
||||
sequence.append(KeyComboAction("a"))
|
||||
sequence.append(KeyReleaseAction(0, None, "KP_Insert"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"2. Toggle Browse Mode",
|
||||
["BRAILLE LINE: 'Browse mode'",
|
||||
" VISIBLE: 'Browse mode', cursor=0",
|
||||
"SPEECH OUTPUT: 'Browse mode' voice=system"]))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("Up"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"3. Up Arrow in Browse Mode",
|
||||
["BRAILLE LINE: 'applied with aria $l'",
|
||||
" VISIBLE: 'applied with aria $l', cursor=19",
|
||||
"BRAILLE LINE: 'editor0 tool bar'",
|
||||
" VISIBLE: 'editor0 tool bar', cursor=1",
|
||||
"SPEECH OUTPUT: 'editor0 tool bar'"]))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("Up"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"4. Up Arrow in Browse Mode",
|
||||
["BRAILLE LINE: 'No plugins, initially empty h2'",
|
||||
" VISIBLE: 'No plugins, initially empty h2', cursor=1",
|
||||
"SPEECH OUTPUT: 'No plugins, initially empty heading level 2'"]))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("Up"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"5. Up Arrow in Browse Mode",
|
||||
["BRAILLE LINE: 'Editor + Plugins Test h1'",
|
||||
" VISIBLE: 'Editor + Plugins Test h1', cursor=1",
|
||||
"SPEECH OUTPUT: 'Editor + Plugins Test heading level 1'"]))
|
||||
|
||||
sequence.append(utils.AssertionSummaryAction())
|
||||
sequence.start()
|
Reference in New Issue
Block a user