Make sure all files that should be present are present.
This commit is contained in:
57
test/keystrokes/gtk-demo/role_combo_box2.py
Normal file
57
test/keystrokes/gtk-demo/role_combo_box2.py
Normal file
@ -0,0 +1,57 @@
|
||||
#!/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("Printing"))
|
||||
sequence.append(KeyComboAction("Return"))
|
||||
|
||||
sequence.append(KeyComboAction("Right"))
|
||||
sequence.append(PauseAction(3000))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("<Alt>o"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"1. Combo box",
|
||||
["BRAILLE LINE: 'gtk-demo application Print dialog Page Setup page tab Only print: All sheets combo box'",
|
||||
" VISIBLE: 'Only print: All sheets combo box', cursor=1",
|
||||
"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: 'gtk-demo application Print dialog Page Setup page tab Only print: All sheets combo box'",
|
||||
" VISIBLE: 'Only print: All sheets combo box', cursor=13",
|
||||
"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: 'gtk-demo application Print dialog Page Setup page tab 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: 'gtk-demo application Print dialog Page Setup page tab 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: '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