Initial commit, very few changes from orca 45. Added xfce4-notification daemon support.
This commit is contained in:
		
							
								
								
									
										55
									
								
								test/keystrokes/firefox/aria_toolbar_dojo.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										55
									
								
								test/keystrokes/firefox/aria_toolbar_dojo.py
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,55 @@ | ||||
| #!/usr/bin/python | ||||
|  | ||||
| """Test of Dojo toolbar presentation.""" | ||||
|  | ||||
| from macaroon.playback import * | ||||
| import utils | ||||
|  | ||||
| sequence = MacroSequence() | ||||
|  | ||||
| #sequence.append(WaitForDocLoad()) | ||||
| sequence.append(PauseAction(10000)) | ||||
|  | ||||
| sequence.append(utils.StartRecordingAction()) | ||||
| sequence.append(KeyComboAction("<Control>Home")) | ||||
| sequence.append(utils.AssertPresentationAction( | ||||
|     "1. Ctrl + Home", | ||||
|     ["BRAILLE LINE:  'Toolbar test h1'", | ||||
|      "     VISIBLE:  'Toolbar test h1', cursor=1", | ||||
|      "SPEECH OUTPUT: 'Toolbar test heading level 1'"])) | ||||
|  | ||||
| sequence.append(utils.StartRecordingAction()) | ||||
| sequence.append(KeyComboAction("Down")) | ||||
| sequence.append(utils.AssertPresentationAction( | ||||
|     "2. Down Arrow", | ||||
|     ["BRAILLE LINE:  'Toolbar from markup h2'", | ||||
|      "     VISIBLE:  'Toolbar from markup h2', cursor=1", | ||||
|      "SPEECH OUTPUT: 'Toolbar from markup heading level 2'"])) | ||||
|  | ||||
| sequence.append(utils.StartRecordingAction()) | ||||
| sequence.append(KeyComboAction("Down")) | ||||
| sequence.append(utils.AssertPresentationAction( | ||||
|     "3. Down Arrow", | ||||
|     ["BRAILLE LINE:  'input before toolbar1 $l'", | ||||
|      "     VISIBLE:  'input before toolbar1 $l', cursor=1", | ||||
|      "SPEECH OUTPUT: 'entry input before toolbar1.'"])) | ||||
|  | ||||
| sequence.append(utils.StartRecordingAction()) | ||||
| sequence.append(KeyComboAction("Down")) | ||||
| sequence.append(utils.AssertPresentationAction( | ||||
|     "4. Down Arrow", | ||||
|     ["BRAILLE LINE:  'tool bar'", | ||||
|      "     VISIBLE:  'tool bar', cursor=1", | ||||
|      "SPEECH OUTPUT: 'tool bar'"])) | ||||
|  | ||||
| sequence.append(utils.StartRecordingAction()) | ||||
| sequence.append(KeyComboAction("Down")) | ||||
| sequence.append(utils.AssertPresentationAction( | ||||
|     "5. Down Arrow", | ||||
|     ["KNOWN ISSUE: 'Sometimes it takes additional arrow presses to get here. Timing issue?", | ||||
|      "BRAILLE LINE:  'input after toolbar1 $l'", | ||||
|      "     VISIBLE:  'input after toolbar1 $l', cursor=1", | ||||
|      "SPEECH OUTPUT: 'entry input after toolbar1.'"])) | ||||
|  | ||||
| sequence.append(utils.AssertionSummaryAction()) | ||||
| sequence.start() | ||||
		Reference in New Issue
	
	Block a user