cthulhu/test/keystrokes/firefox/aria_sliders.py
2024-12-18 10:05:44 -05:00

142 lines
5.3 KiB
Python

#!/usr/bin/env python3
#
# Copyright (c) 2024 Stormux
# Copyright (c) 2010-2012 The Orca Team
# Copyright (c) 2012 Igalia, S.L.
# Copyright (c) 2005-2010 Sun Microsystems Inc.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the
# Free Software Foundation, Inc., Franklin Street, Fifth Floor,
# Boston MA 02110-1301 USA.
#
# Fork of Orca Screen Reader (GNOME)
# Original source: https://gitlab.gnome.org/GNOME/orca
from macaroon.playback import *
import utils
sequence = MacroSequence()
#sequence.append(WaitForDocLoad())
sequence.append(PauseAction(5000))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Tab"))
sequence.append(utils.AssertPresentationAction(
"1. Tab to slider 1",
["BRAILLE LINE: 'embedded'",
" VISIBLE: 'embedded', cursor=1",
"BRAILLE LINE: '30 horizontal slider'",
" VISIBLE: '30 horizontal slider', cursor=1",
"SPEECH OUTPUT: 'horizontal slider 30.'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("KP_Enter"))
sequence.append(utils.AssertPresentationAction(
"2. Basic whereAmI on slider 1",
["BRAILLE LINE: '30 horizontal slider'",
" VISIBLE: '30 horizontal slider', cursor=1",
"SPEECH OUTPUT: 'horizontal slider 30 30 percent.'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Right"))
sequence.append(utils.AssertPresentationAction(
"3. Increment slider 1",
["BRAILLE LINE: '35 horizontal slider'",
" VISIBLE: '35 horizontal slider', cursor=1",
"SPEECH OUTPUT: '35'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Right"))
sequence.append(utils.AssertPresentationAction(
"4. Increment slider 1",
["BRAILLE LINE: '40 horizontal slider'",
" VISIBLE: '40 horizontal slider', cursor=1",
"SPEECH OUTPUT: '40'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Left"))
sequence.append(utils.AssertPresentationAction(
"5. Decrement slider 1",
["BRAILLE LINE: '35 horizontal slider'",
" VISIBLE: '35 horizontal slider', cursor=1",
"SPEECH OUTPUT: '35'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Tab"))
sequence.append(utils.AssertPresentationAction(
"6. Tab to slider 2's left range",
["BRAILLE LINE: '1950 horizontal slider'",
" VISIBLE: '1950 horizontal slider', cursor=1",
"SPEECH OUTPUT: 'horizontal slider 1950.'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Right"))
sequence.append(utils.AssertPresentationAction(
"7. Increment slider 2's left range",
["BRAILLE LINE: '1951 horizontal slider'",
" VISIBLE: '1951 horizontal slider', cursor=1",
"SPEECH OUTPUT: '1951'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Right"))
sequence.append(utils.AssertPresentationAction(
"8. Increment slider 2's left range",
["BRAILLE LINE: '1952 horizontal slider'",
" VISIBLE: '1952 horizontal slider', cursor=1",
"SPEECH OUTPUT: '1952'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Left"))
sequence.append(utils.AssertPresentationAction(
"9. Decrement slider 2's left range",
["BRAILLE LINE: '1951 horizontal slider'",
" VISIBLE: '1951 horizontal slider', cursor=1",
"SPEECH OUTPUT: '1951'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Tab"))
sequence.append(utils.AssertPresentationAction(
"10. Tab to slider 2's right range",
["BRAILLE LINE: '2000 horizontal slider'",
" VISIBLE: '2000 horizontal slider', cursor=1",
"SPEECH OUTPUT: 'horizontal slider 2000.'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Right"))
sequence.append(utils.AssertPresentationAction(
"11. Increment slider 2's right range",
["BRAILLE LINE: '2001 horizontal slider'",
" VISIBLE: '2001 horizontal slider', cursor=1",
"SPEECH OUTPUT: '2001'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Right"))
sequence.append(utils.AssertPresentationAction(
"12. Increment slider 2's right range",
["BRAILLE LINE: '2002 horizontal slider'",
" VISIBLE: '2002 horizontal slider', cursor=1",
"SPEECH OUTPUT: '2002'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Left"))
sequence.append(utils.AssertPresentationAction(
"13. Decrement slider 2's right range",
["BRAILLE LINE: '2001 horizontal slider'",
" VISIBLE: '2001 horizontal slider', cursor=1",
"SPEECH OUTPUT: '2001'"]))
sequence.append(utils.AssertionSummaryAction())
sequence.start()