cthulhu/test/keystrokes/firefox/focus_tracking_imagemap.py

78 lines
2.5 KiB
Python
Raw Normal View History

#!/usr/bin/python
"""Test of Cthulhu output when tabbing on a page with imagemaps."""
from macaroon.playback import *
import utils
sequence = MacroSequence()
#sequence.append(WaitForDocLoad())
sequence.append(PauseAction(5000))
# Work around some new quirk in Gecko that causes this test to fail if
# run via the test harness rather than manually.
sequence.append(KeyComboAction("<Control>r"))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Tab"))
sequence.append(utils.AssertPresentationAction(
"1. Tab",
["BRAILLE LINE: 'z image map link'",
" VISIBLE: 'z image map link', cursor=1",
"SPEECH OUTPUT: 'z image map link.'",
"SPEECH OUTPUT: 'rect'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Tab"))
sequence.append(utils.AssertPresentationAction(
"2. Tab",
["BRAILLE LINE: 'y image map link'",
" VISIBLE: 'y image map link', cursor=1",
"SPEECH OUTPUT: 'y image map link.'",
"SPEECH OUTPUT: 'rect'"]))
sequence.append(KeyComboAction("Tab"))
sequence.append(KeyComboAction("Tab"))
sequence.append(KeyComboAction("Tab"))
sequence.append(KeyComboAction("Tab"))
sequence.append(KeyComboAction("Tab"))
sequence.append(KeyComboAction("Tab"))
sequence.append(KeyComboAction("Tab"))
sequence.append(KeyComboAction("Tab"))
sequence.append(KeyComboAction("Tab"))
sequence.append(KeyComboAction("Tab"))
sequence.append(KeyComboAction("Tab"))
sequence.append(KeyComboAction("Tab"))
sequence.append(KeyComboAction("Tab"))
sequence.append(KeyComboAction("Tab"))
sequence.append(KeyComboAction("Tab"))
sequence.append(KeyComboAction("Tab"))
sequence.append(KeyComboAction("Tab"))
sequence.append(KeyComboAction("Tab"))
sequence.append(KeyComboAction("Tab"))
sequence.append(KeyComboAction("Tab"))
sequence.append(KeyComboAction("Tab"))
sequence.append(KeyComboAction("Tab"))
sequence.append(KeyComboAction("Tab"))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Tab"))
sequence.append(utils.AssertPresentationAction(
"3. Tab",
["BRAILLE LINE: 'a image map link'",
" VISIBLE: 'a image map link', cursor=1",
"SPEECH OUTPUT: 'a image map link.'",
"SPEECH OUTPUT: 'rect'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Tab"))
sequence.append(utils.AssertPresentationAction(
"4. Tab",
["BRAILLE LINE: 'wk09_frozenmovie'",
" VISIBLE: 'wk09_frozenmovie', cursor=1",
"SPEECH OUTPUT: 'wk09_frozenmovie link.'"]))
sequence.append(utils.AssertionSummaryAction())
sequence.start()