#!/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 """Test of line navigation output of Firefox.""" from macaroon.playback import * import utils sequence = MacroSequence() #sequence.append(WaitForDocLoad()) sequence.append(PauseAction(5000)) sequence.append(PauseAction(3000)) # Work around some new quirk in Gecko that causes this test to fail if # run via the test harness rather than manually. sequence.append(KeyComboAction("r")) sequence.append(KeyComboAction("Home")) sequence.append(utils.StartRecordingAction()) sequence.append(KeyComboAction("Down")) sequence.append(utils.AssertPresentationAction( "1. Line Down", ["BRAILLE LINE: 'About h4'", " VISIBLE: 'About h4', cursor=1", "SPEECH OUTPUT: 'About heading level 4'"])) sequence.append(utils.StartRecordingAction()) sequence.append(KeyComboAction("Down")) sequence.append(utils.AssertPresentationAction( "2. Line Down", ["BRAILLE LINE: 'Services h4'", " VISIBLE: 'Services h4', cursor=1", "SPEECH OUTPUT: 'Services heading level 4'"])) sequence.append(utils.StartRecordingAction()) sequence.append(KeyComboAction("Down")) sequence.append(utils.AssertPresentationAction( "3. Line Down", ["BRAILLE LINE: 'Science h4'", " VISIBLE: 'Science h4', cursor=1", "SPEECH OUTPUT: 'Science'", "SPEECH OUTPUT: 'link heading level 4.'"])) sequence.append(utils.StartRecordingAction()) sequence.append(KeyComboAction("Down")) sequence.append(utils.AssertPresentationAction( "4. Line Down", ["BRAILLE LINE: 'Recent Tags h4'", " VISIBLE: 'Recent Tags h4', cursor=1", "SPEECH OUTPUT: 'Recent Tags'", "SPEECH OUTPUT: 'link heading level 4.'"])) sequence.append(utils.StartRecordingAction()) sequence.append(KeyComboAction("Down")) sequence.append(utils.AssertPresentationAction( "5. Line Down", ["BRAILLE LINE: 'Slashdot Login h4'", " VISIBLE: 'Slashdot Login h4', cursor=1", "SPEECH OUTPUT: 'Slashdot Login heading level 4'"])) sequence.append(utils.StartRecordingAction()) sequence.append(KeyComboAction("Down")) sequence.append(utils.AssertPresentationAction( "6. Line Down", ["BRAILLE LINE: 'Nickname $l Password $l Log in push button'", " VISIBLE: 'Nickname $l Password $l Log in p', cursor=1", "SPEECH OUTPUT: 'Log in panel'", "SPEECH OUTPUT: 'Nickname'", "SPEECH OUTPUT: 'entry.'", "SPEECH OUTPUT: 'Password'", "SPEECH OUTPUT: 'password text'", "SPEECH OUTPUT: 'Log in push button'"])) sequence.append(utils.StartRecordingAction()) sequence.append(KeyComboAction("Down")) sequence.append(utils.AssertPresentationAction( "7. Line Down", ["BRAILLE LINE: 'Some Poll h4'", " VISIBLE: 'Some Poll h4', cursor=1", "SPEECH OUTPUT: 'Some Poll heading level 4'"])) sequence.append(utils.StartRecordingAction()) sequence.append(KeyComboAction("Down")) sequence.append(utils.AssertPresentationAction( "8. Line Down", ["BRAILLE LINE: 'Poll What is your favorite poison?'", " VISIBLE: 'Poll What is your favorite poiso', cursor=6", "SPEECH OUTPUT: 'What is your favorite poison? panel.'"])) sequence.append(utils.StartRecordingAction()) sequence.append(KeyComboAction("Down")) sequence.append(utils.AssertPresentationAction( "9. Line Down", ["BRAILLE LINE: '& y Some polls radio button'", " VISIBLE: '& y Some polls radio button', cursor=1", "SPEECH OUTPUT: 'Some polls.'", "SPEECH OUTPUT: 'not selected radio button'"])) sequence.append(utils.StartRecordingAction()) sequence.append(KeyComboAction("Down")) sequence.append(utils.AssertPresentationAction( "10. Line Down", ["BRAILLE LINE: 'Book Reviews h4'", " VISIBLE: 'Book Reviews h4', cursor=1", "SPEECH OUTPUT: 'Book Reviews'", "SPEECH OUTPUT: 'link heading level 4.'"])) sequence.append(utils.StartRecordingAction()) sequence.append(KeyComboAction("Up")) sequence.append(utils.AssertPresentationAction( "11. Line Up", ["BRAILLE LINE: '& y Some polls radio button'", " VISIBLE: '& y Some polls radio button', cursor=1", "SPEECH OUTPUT: 'Poll panel'", "SPEECH OUTPUT: 'Some polls.'", "SPEECH OUTPUT: 'not selected radio button'"])) sequence.append(utils.StartRecordingAction()) sequence.append(KeyComboAction("Up")) sequence.append(utils.AssertPresentationAction( "12. Line Up", ["BRAILLE LINE: 'Poll What is your favorite poison?'", " VISIBLE: 'Poll What is your favorite poiso', cursor=6", "SPEECH OUTPUT: 'What is your favorite poison? panel.'"])) sequence.append(utils.StartRecordingAction()) sequence.append(KeyComboAction("Up")) sequence.append(utils.AssertPresentationAction( "13. Line Up", ["BRAILLE LINE: 'Some Poll h4'", " VISIBLE: 'Some Poll h4', cursor=1", "SPEECH OUTPUT: 'Some Poll heading level 4'"])) sequence.append(utils.StartRecordingAction()) sequence.append(KeyComboAction("Up")) sequence.append(utils.AssertPresentationAction( "14. Line Up", ["BRAILLE LINE: 'Nickname $l Password $l Log in push button'", " VISIBLE: 'Nickname $l Password $l Log in p', cursor=1", "SPEECH OUTPUT: 'Log in panel'", "SPEECH OUTPUT: 'Nickname'", "SPEECH OUTPUT: 'entry.'", "SPEECH OUTPUT: 'Password'", "SPEECH OUTPUT: 'password text'", "SPEECH OUTPUT: 'Log in push button'"])) sequence.append(utils.StartRecordingAction()) sequence.append(KeyComboAction("Up")) sequence.append(utils.AssertPresentationAction( "15. Line Up", ["BRAILLE LINE: 'Slashdot Login h4'", " VISIBLE: 'Slashdot Login h4', cursor=1", "SPEECH OUTPUT: 'Slashdot Login heading level 4'"])) sequence.append(utils.StartRecordingAction()) sequence.append(KeyComboAction("Up")) sequence.append(utils.AssertPresentationAction( "16. Line Up", ["BRAILLE LINE: 'Recent Tags h4'", " VISIBLE: 'Recent Tags h4', cursor=1", "SPEECH OUTPUT: 'Recent Tags'", "SPEECH OUTPUT: 'link heading level 4.'"])) sequence.append(utils.StartRecordingAction()) sequence.append(KeyComboAction("Up")) sequence.append(utils.AssertPresentationAction( "17. Line Up", ["BRAILLE LINE: 'Science h4'", " VISIBLE: 'Science h4', cursor=1", "SPEECH OUTPUT: 'Science'", "SPEECH OUTPUT: 'link heading level 4.'"])) sequence.append(utils.StartRecordingAction()) sequence.append(KeyComboAction("Up")) sequence.append(utils.AssertPresentationAction( "18. Line Up", ["BRAILLE LINE: 'Services h4'", " VISIBLE: 'Services h4', cursor=1", "SPEECH OUTPUT: 'Services heading level 4'"])) sequence.append(utils.StartRecordingAction()) sequence.append(KeyComboAction("Up")) sequence.append(utils.AssertPresentationAction( "19. Line Up", ["BRAILLE LINE: 'About h4'", " VISIBLE: 'About h4', cursor=1", "SPEECH OUTPUT: 'About heading level 4'"])) sequence.append(utils.StartRecordingAction()) sequence.append(KeyComboAction("Up")) sequence.append(utils.AssertPresentationAction( "20. Line Up", ["BRAILLE LINE: 'Stories h4'", " VISIBLE: 'Stories h4', cursor=1", "SPEECH OUTPUT: 'Stories heading level 4'"])) sequence.append(utils.AssertionSummaryAction()) sequence.start()