Initial commit, very few changes from orca 45. Added xfce4-notification daemon support.
This commit is contained in:
51
test/keystrokes/firefox/line_nav_focused_link.py
Normal file
51
test/keystrokes/firefox/line_nav_focused_link.py
Normal file
@ -0,0 +1,51 @@
|
||||
#!/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()
|
Reference in New Issue
Block a user