Initial commit, very few changes from orca 45. Added xfce4-notification daemon support.
This commit is contained in:
23
test/keystrokes/firefox/say_all_onmouseup.py
Normal file
23
test/keystrokes/firefox/say_all_onmouseup.py
Normal file
@ -0,0 +1,23 @@
|
||||
#!/usr/bin/python
|
||||
|
||||
"""Test of sayAll."""
|
||||
|
||||
from macaroon.playback import *
|
||||
import utils
|
||||
|
||||
sequence = MacroSequence()
|
||||
|
||||
#sequence.append(WaitForDocLoad())
|
||||
sequence.append(PauseAction(5000))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("KP_Add"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"1. KP_Add to do a SayAll",
|
||||
["SPEECH OUTPUT: 'Line 1'",
|
||||
"SPEECH OUTPUT: 'Line 2'",
|
||||
"SPEECH OUTPUT: 'clickable'",
|
||||
"SPEECH OUTPUT: 'Line 3'"]))
|
||||
|
||||
sequence.append(utils.AssertionSummaryAction())
|
||||
sequence.start()
|
Reference in New Issue
Block a user