Initial commit, very few changes from orca 45. Added xfce4-notification daemon support.
This commit is contained in:
64
test/keystrokes/gtk3-demo/role_combo_box2.py
Normal file
64
test/keystrokes/gtk3-demo/role_combo_box2.py
Normal file
@ -0,0 +1,64 @@
|
||||
#!/usr/bin/python
|
||||
|
||||
"""Test of labelled combo box output."""
|
||||
|
||||
from macaroon.playback import *
|
||||
import utils
|
||||
|
||||
sequence = MacroSequence()
|
||||
|
||||
sequence.append(KeyComboAction("<Control>f"))
|
||||
sequence.append(TypeAction("Popovers"))
|
||||
sequence.append(KeyComboAction("Escape"))
|
||||
sequence.append(KeyComboAction("Down"))
|
||||
sequence.append(KeyComboAction("Down"))
|
||||
sequence.append(KeyComboAction("<Shift>Right"))
|
||||
sequence.append(KeyComboAction("Down"))
|
||||
sequence.append(KeyComboAction("Return"))
|
||||
sequence.append(PauseAction(3000))
|
||||
|
||||
sequence.append(KeyComboAction("Right"))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("<Alt>o"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"1. Combo box",
|
||||
["BRAILLE LINE: 'gtk3-demo application Print dialog Page Setup page tab Layout panel Only print: All sheets combo box'",
|
||||
" VISIBLE: 'Only print: All sheets combo box', cursor=13",
|
||||
"SPEECH OUTPUT: 'Layout panel.'",
|
||||
"SPEECH OUTPUT: 'Only print: All sheets combo box.'"]))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("KP_Enter"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"2. Where Am I",
|
||||
["BRAILLE LINE: 'gtk3-demo application Print dialog Page Setup page tab Layout panel Only print: All sheets combo box'",
|
||||
" VISIBLE: 'Only print: All sheets combo box', cursor=1",
|
||||
"SPEECH OUTPUT: 'Only print: combo box.'",
|
||||
"SPEECH OUTPUT: 'All sheets 1 of 3.'",
|
||||
"SPEECH OUTPUT: 'Alt+O'"]))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("Down"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"3. Change selection",
|
||||
["BRAILLE LINE: 'gtk3-demo application Print dialog Page Setup page tab Layout panel Only print: Even sheets combo box Even sheets'",
|
||||
" VISIBLE: 'Even sheets', cursor=1",
|
||||
"SPEECH OUTPUT: 'Even sheets.'"]))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("KP_Enter"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"4. Where Am I",
|
||||
["BRAILLE LINE: 'gtk3-demo application Print dialog Page Setup page tab Layout panel Only print: Even sheets combo box Even sheets'",
|
||||
" VISIBLE: 'Even sheets', cursor=1",
|
||||
"SPEECH OUTPUT: 'Print dialog'",
|
||||
"SPEECH OUTPUT: 'Page Setup page tab.'",
|
||||
"SPEECH OUTPUT: 'Layout panel.'",
|
||||
"SPEECH OUTPUT: 'Even sheets.'",
|
||||
"SPEECH OUTPUT: '2 of 3'"]))
|
||||
|
||||
sequence.append(KeyComboAction("<Alt>F4"))
|
||||
|
||||
sequence.append(utils.AssertionSummaryAction())
|
||||
sequence.start()
|
Reference in New Issue
Block a user