59 lines
1.8 KiB
Python
59 lines
1.8 KiB
Python
|
#!/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()
|