Initial commit, very few changes from orca 45. Added xfce4-notification daemon support.

This commit is contained in:
Storm Dragon
2024-10-16 17:06:34 -04:00
parent cef8363cfd
commit a523205ac2
1447 changed files with 1537893 additions and 2 deletions

View File

@ -0,0 +1,38 @@
#!/usr/bin/python
from macaroon.playback import *
import utils
sequence = MacroSequence()
#sequence.append(WaitForDocLoad())
sequence.append(PauseAction(5000))
sequence.append(PauseAction(3000))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("KP_Enter"))
sequence.append(utils.AssertPresentationAction(
"1. Where Am I on image",
["KNOWN ISSUE: We don't know the longdesc is there due to https://bugzilla.mozilla.org/show_bug.cgi?id=1165433",
"BRAILLE LINE: 'the image image'",
" VISIBLE: 'the image image', cursor=1",
"SPEECH OUTPUT: 'the image image has long description'"]))
sequence.append(PauseAction(3000))
sequence.append(KeyComboAction("KP_Multiply"))
sequence.append(PauseAction(3000))
sequence.append(KeyComboAction("d"))
#sequence.append(WaitForDocLoad())
sequence.append(PauseAction(5000))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("KP_Enter"))
sequence.append(utils.AssertPresentationAction(
"2. Having selected View Description, do a Where Am I for new location",
["BRAILLE LINE: 'Pass h1'",
" VISIBLE: 'Pass h1', cursor=(0|1)",
"SPEECH OUTPUT: 'heading level 1.'",
"SPEECH OUTPUT: 'Pass'"]))
sequence.append(utils.AssertionSummaryAction())
sequence.start()