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,45 @@
#!/usr/bin/python
"""Test to verify presentation of focusable labels."""
from macaroon.playback import *
import utils
sequence = MacroSequence()
sequence.append(KeyComboAction("<Alt>f"))
sequence.append(TypeAction("w"))
sequence.append(TypeAction("a"))
sequence.append(PauseAction(3000))
sequence.append(KeyComboAction("<Alt>n"))
sequence.append(KeyComboAction("<Alt>b"))
sequence.append(PauseAction(3000))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Down"))
sequence.append(utils.AssertPresentationAction(
"1. Down arrow to the first item",
["BRAILLE LINE: 'soffice application Agenda Wizard dialog Steps panel General information'",
" VISIBLE: 'General information', cursor=1",
"SPEECH OUTPUT: 'General information.'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Down"))
sequence.append(utils.AssertPresentationAction(
"2. Down arrow to the next item",
["BRAILLE LINE: 'soffice application Agenda Wizard dialog Steps panel Headings to include'",
" VISIBLE: 'Headings to include', cursor=1",
"SPEECH OUTPUT: 'Headings to include.'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Down"))
sequence.append(utils.AssertPresentationAction(
"3. Down arrow to the next item",
["BRAILLE LINE: 'soffice application Agenda Wizard dialog Steps panel Names'",
" VISIBLE: 'Names', cursor=1",
"SPEECH OUTPUT: 'Names.'"]))
sequence.append(KeyComboAction("<Alt>F4"))
sequence.append(utils.AssertionSummaryAction())
sequence.start()