Make sure all files that should be present are present.
This commit is contained in:
70
test/keystrokes/firefox/line_nav_twitter_bug.py
Normal file
70
test/keystrokes/firefox/line_nav_twitter_bug.py
Normal file
@ -0,0 +1,70 @@
|
||||
#!/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("<Control>Home"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"1. Top of file",
|
||||
["BRAILLE LINE: 'This is a test.'",
|
||||
" VISIBLE: 'This is a test.', cursor=1",
|
||||
"SPEECH OUTPUT: 'This is a test.'"]))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("Down"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"2. Line Down",
|
||||
["BRAILLE LINE: 'foo image h2'",
|
||||
" VISIBLE: 'foo image h2', cursor=1",
|
||||
"SPEECH OUTPUT: 'foo image link heading level 2'"]))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("Down"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"3. Line Down",
|
||||
["BRAILLE LINE: 'Joanmarie h2'",
|
||||
" VISIBLE: 'Joanmarie h2', cursor=1",
|
||||
"SPEECH OUTPUT: 'Joanmarie heading level 2'"]))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("Down"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"4. Line Down",
|
||||
["BRAILLE LINE: 'Another test'",
|
||||
" VISIBLE: 'Another test', cursor=1",
|
||||
"SPEECH OUTPUT: 'Another test'"]))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("Up"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"5. Line Down",
|
||||
["BRAILLE LINE: 'Joanmarie h2'",
|
||||
" VISIBLE: 'Joanmarie h2', cursor=1",
|
||||
"SPEECH OUTPUT: 'Joanmarie heading level 2'"]))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("Up"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"6. Line Up",
|
||||
["BRAILLE LINE: 'foo image h2'",
|
||||
" VISIBLE: 'foo image h2', cursor=1",
|
||||
"SPEECH OUTPUT: 'foo image link heading level 2'"]))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("Up"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"7. Line Up",
|
||||
["BRAILLE LINE: 'This is a test.'",
|
||||
" VISIBLE: 'This is a test.', cursor=1",
|
||||
"SPEECH OUTPUT: 'This is a test.'"]))
|
||||
|
||||
sequence.append(utils.AssertionSummaryAction())
|
||||
sequence.start()
|
Reference in New Issue
Block a user