70 lines
2.6 KiB
Python
70 lines
2.6 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 mathvariant test cases'",
|
||
|
" VISIBLE: 'MathML mathvariant test cases', cursor=1",
|
||
|
"SPEECH OUTPUT: 'MathML mathvariant test cases'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"2. Line Down",
|
||
|
["KNOWN ISSUE: The variant is not exposed to us. https://bugzilla.mozilla.org/show_bug.cgi?id=1182469",
|
||
|
"BRAILLE LINE: 'math'",
|
||
|
" VISIBLE: 'math', cursor=0",
|
||
|
"SPEECH OUTPUT: 'A B C D E F G H I J K L M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"3. Line Down",
|
||
|
["BRAILLE LINE: 'End of first case'",
|
||
|
" VISIBLE: 'End of first case', cursor=1",
|
||
|
"SPEECH OUTPUT: 'End of first case'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"4. Line Down",
|
||
|
["BRAILLE LINE: 'math'",
|
||
|
" VISIBLE: 'math', cursor=0",
|
||
|
"SPEECH OUTPUT: 'A B C D E F G H I J K L M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"5. Line Down",
|
||
|
["BRAILLE LINE: 'End of second case'",
|
||
|
" VISIBLE: 'End of second case', cursor=1",
|
||
|
"SPEECH OUTPUT: 'End of second case'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"6. Line Down",
|
||
|
["BRAILLE LINE: 'math'",
|
||
|
" VISIBLE: 'math', cursor=0",
|
||
|
"SPEECH OUTPUT: 'A B C D E F G H I J K L M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"7. Line Down",
|
||
|
["BRAILLE LINE: 'End of test'",
|
||
|
" VISIBLE: 'End of test', cursor=1",
|
||
|
"SPEECH OUTPUT: 'End of test'"]))
|
||
|
|
||
|
sequence.append(utils.AssertionSummaryAction())
|
||
|
sequence.start()
|