Make sure all files that should be present are present.
This commit is contained in:
58
test/keystrokes/firefox/math_line_nav_fraction.py
Normal file
58
test/keystrokes/firefox/math_line_nav_fraction.py
Normal file
@ -0,0 +1,58 @@
|
||||
#!/usr/bin/python
|
||||
|
||||
from macaroon.playback import *
|
||||
import utils
|
||||
|
||||
sequence = MacroSequence()
|
||||
|
||||
#sequence.append(WaitForDocLoad())
|
||||
sequence.append(PauseAction(5000))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("<Control>Home"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"1. Top of file",
|
||||
["BRAILLE LINE: 'MathML fraction test cases'",
|
||||
" VISIBLE: 'MathML fraction test cases', cursor=1",
|
||||
"SPEECH OUTPUT: 'MathML fraction test cases'"]))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("Down"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"2. Line Down",
|
||||
["BRAILLE LINE: 'math'",
|
||||
" VISIBLE: 'math', cursor=0",
|
||||
"SPEECH OUTPUT: 'fraction start.'",
|
||||
"SPEECH OUTPUT: 'a over b.'",
|
||||
"SPEECH OUTPUT: 'fraction end.'"]))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("Down"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"3. Line Down",
|
||||
["BRAILLE LINE: 'math'",
|
||||
" VISIBLE: 'math', cursor=0",
|
||||
"SPEECH OUTPUT: 'fraction start.'",
|
||||
"SPEECH OUTPUT: 'a over b.'",
|
||||
"SPEECH OUTPUT: 'fraction end.'"]))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("Down"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"4. Line Down",
|
||||
["BRAILLE LINE: 'math'",
|
||||
" VISIBLE: 'math', cursor=0",
|
||||
"SPEECH OUTPUT: 'fraction without bar, start.'",
|
||||
"SPEECH OUTPUT: 'a over b.'",
|
||||
"SPEECH OUTPUT: 'fraction end.'"]))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("Down"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"5. Line Down",
|
||||
["BRAILLE LINE: 'End of test'",
|
||||
" VISIBLE: 'End of test', cursor=1",
|
||||
"SPEECH OUTPUT: 'End of test'"]))
|
||||
|
||||
sequence.append(utils.AssertionSummaryAction())
|
||||
sequence.start()
|
Reference in New Issue
Block a user