52 lines
1.4 KiB
Python
52 lines
1.4 KiB
Python
|
#!/usr/bin/python
|
||
|
|
||
|
"""Test of line navigation."""
|
||
|
|
||
|
from macaroon.playback import *
|
||
|
import utils
|
||
|
|
||
|
sequence = MacroSequence()
|
||
|
|
||
|
#sequence.append(WaitForDocLoad())
|
||
|
sequence.append(PauseAction(5000))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Tab"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"1. Tab to link",
|
||
|
["BRAILLE LINE: 'Line 2'",
|
||
|
" VISIBLE: 'Line 2', cursor=1",
|
||
|
"BRAILLE LINE: 'Line 2'",
|
||
|
" VISIBLE: 'Line 2', cursor=1",
|
||
|
"SPEECH OUTPUT: 'Line 2 link.'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Down"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"2. Line Down",
|
||
|
["BRAILLE LINE: 'Line 3'",
|
||
|
" VISIBLE: 'Line 3', cursor=1",
|
||
|
"SPEECH OUTPUT: 'Line 3'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Up"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"3. Line Up",
|
||
|
["BRAILLE LINE: '[Line 2]'",
|
||
|
" VISIBLE: '[Line 2]', cursor=1",
|
||
|
"SPEECH OUTPUT: '['",
|
||
|
"SPEECH OUTPUT: 'Line 2'",
|
||
|
"SPEECH OUTPUT: 'link.'",
|
||
|
"SPEECH OUTPUT: ']'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("Up"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"4. Line Up",
|
||
|
["BRAILLE LINE: 'Line 1'",
|
||
|
" VISIBLE: 'Line 1', cursor=1",
|
||
|
"SPEECH OUTPUT: 'Line 1'"]))
|
||
|
|
||
|
sequence.append(utils.AssertionSummaryAction())
|
||
|
sequence.start()
|