40 lines
1.2 KiB
Python
40 lines
1.2 KiB
Python
|
#!/usr/bin/python
|
||
|
|
||
|
"""Test of tooltips."""
|
||
|
|
||
|
from macaroon.playback import *
|
||
|
import utils
|
||
|
|
||
|
sequence = MacroSequence()
|
||
|
|
||
|
sequence.append(KeyComboAction("<Control>f"))
|
||
|
sequence.append(TypeAction("Printing"))
|
||
|
sequence.append(KeyComboAction("Return"))
|
||
|
|
||
|
sequence.append(KeyComboAction("<Alt>e"))
|
||
|
sequence.append(KeyComboAction("<Shift>ISO_Left_Tab"))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("<Control>F1"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"1. Show tooltip",
|
||
|
["BRAILLE LINE: ' Specify one or more page ranges,",
|
||
|
" e.g. 1-3,7,11 tool tip'",
|
||
|
" VISIBLE: 'Specify one or more page ranges,', cursor=1",
|
||
|
"SPEECH OUTPUT: 'Specify one or more page ranges,",
|
||
|
" e.g. 1-3,7,11'"]))
|
||
|
|
||
|
sequence.append(utils.StartRecordingAction())
|
||
|
sequence.append(KeyComboAction("<Control>F1"))
|
||
|
sequence.append(utils.AssertPresentationAction(
|
||
|
"2. Hide tooltip",
|
||
|
["BRAILLE LINE: 'gtk-demo application Print dialog General page tab &=y Pages: radio button'",
|
||
|
" VISIBLE: '&=y Pages: radio button', cursor=1",
|
||
|
"SPEECH OUTPUT: 'Pages:'",
|
||
|
"SPEECH OUTPUT: 'selected radio button'"]))
|
||
|
|
||
|
sequence.append(KeyComboAction("<Alt>F4"))
|
||
|
|
||
|
sequence.append(utils.AssertionSummaryAction())
|
||
|
sequence.start()
|