orca r4169 - in trunk: . src/orca test/keystrokes/firefox



Author: joanied
Date: Mon Sep  8 00:29:44 2008
New Revision: 4169
URL: http://svn.gnome.org/viewvc/orca?rev=4169&view=rev

Log:
* test/keystrokes/firefox/dojo_slider.py:
  test/keystrokes/firefox/xul_role_radio_button.py:
  test/keystrokes/firefox/label_guess_bugzilla_search.py:
  test/keystrokes/firefox/xul_role_tree.py:
  test/keystrokes/firefox/line_nav_wiki.py:
  test/keystrokes/firefox/line_nav_multi_line_text.py:
  test/keystrokes/firefox/html_struct_nav_lists.py:
  test/keystrokes/firefox/html_role_lists.py:
  test/keystrokes/firefox/html_struct_nav_list_item.py:
  test/keystrokes/firefox/line_nav_bugzilla_search.py:
  test/keystrokes/firefox/line_nav_enter_bug.py:
  test/keystrokes/firefox/line_nav_nested_tables.py:
  src/orca/braille.py:
  Updated tests to reflect changes from the fix for bug #527022.


Modified:
   trunk/ChangeLog
   trunk/src/orca/braille.py
   trunk/test/keystrokes/firefox/dojo_slider.py
   trunk/test/keystrokes/firefox/html_role_lists.py
   trunk/test/keystrokes/firefox/html_struct_nav_list_item.py
   trunk/test/keystrokes/firefox/html_struct_nav_lists.py
   trunk/test/keystrokes/firefox/label_guess_bugzilla_search.py
   trunk/test/keystrokes/firefox/line_nav_bugzilla_search.py
   trunk/test/keystrokes/firefox/line_nav_enter_bug.py
   trunk/test/keystrokes/firefox/line_nav_multi_line_text.py
   trunk/test/keystrokes/firefox/line_nav_nested_tables.py
   trunk/test/keystrokes/firefox/line_nav_wiki.py
   trunk/test/keystrokes/firefox/xul_role_radio_button.py
   trunk/test/keystrokes/firefox/xul_role_tree.py

Modified: trunk/src/orca/braille.py
==============================================================================
--- trunk/src/orca/braille.py	(original)
+++ trunk/src/orca/braille.py	Mon Sep  8 00:29:44 2008
@@ -1001,11 +1001,11 @@
 
     logLine = "BRAILLE LINE:  '%s'" % string
     debug.println(debug.LEVEL_INFO, logLine)
-    log.info(logLine)
+    log.info(logLine.encode("UTF-8"))
     logLine = "     VISIBLE:  '%s', cursor=%d" % \
                     (string[startPos:endPos], cursorCell)
     debug.println(debug.LEVEL_INFO, logLine)
-    log.info(logLine)
+    log.info(logLine.encode("UTF-8"))
 
     substring = string[startPos:endPos]
     if useBrlAPIBindings:

Modified: trunk/test/keystrokes/firefox/dojo_slider.py
==============================================================================
--- trunk/test/keystrokes/firefox/dojo_slider.py	(original)
+++ trunk/test/keystrokes/firefox/dojo_slider.py	Mon Sep  8 00:29:44 2008
@@ -27,7 +27,7 @@
 ########################################################################
 # Give the widget plenty of time to construct itself. 
 #
-sequence.append(PauseAction(7000))
+sequence.append(PauseAction(10000))
 
 ########################################################################
 # Tab to the first slider.  The following will be presented.

Modified: trunk/test/keystrokes/firefox/html_role_lists.py
==============================================================================
--- trunk/test/keystrokes/firefox/html_role_lists.py	(original)
+++ trunk/test/keystrokes/firefox/html_role_lists.py	Mon Sep  8 00:29:44 2008
@@ -127,7 +127,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Line Down", 
     ["BRAILLE LINE:  'â But discs belong to unordered lists'",
-     "     VISIBLE:  'â But discs belong to unordere', cursor=1",
+     "     VISIBLE:  'â But discs belong to unordered ', cursor=1",
      "SPEECH OUTPUT: 'â But discs belong to unordered lists'"]))
 
 sequence.append(utils.StartRecordingAction())
@@ -143,7 +143,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Line Up", 
     ["BRAILLE LINE:  'â But discs belong to unordered lists'",
-     "     VISIBLE:  'â But discs belong to unordere', cursor=1",
+     "     VISIBLE:  'â But discs belong to unordered ', cursor=1",
      "SPEECH OUTPUT: 'â But discs belong to unordered lists'"]))
 
 sequence.append(utils.StartRecordingAction())

Modified: trunk/test/keystrokes/firefox/html_struct_nav_list_item.py
==============================================================================
--- trunk/test/keystrokes/firefox/html_struct_nav_list_item.py	(original)
+++ trunk/test/keystrokes/firefox/html_struct_nav_list_item.py	Mon Sep  8 00:29:44 2008
@@ -108,7 +108,7 @@
 sequence.append(utils.AssertPresentationAction(
     "i in third list", 
     ["BRAILLE LINE:  'â they should all be different, except here.'",
-     "     VISIBLE:  'â they should all be different', cursor=1",
+     "     VISIBLE:  'â they should all be different, ', cursor=1",
      "SPEECH OUTPUT: 'â they should all be different, except here.'"]))
 
 sequence.append(utils.StartRecordingAction())
@@ -156,7 +156,7 @@
 sequence.append(utils.AssertPresentationAction(
     "i in third list", 
     ["BRAILLE LINE:  'â was a composer who was not square'",
-     "     VISIBLE:  'â was a composer who was not s', cursor=1",
+     "     VISIBLE:  'â was a composer who was not squ', cursor=1",
      "SPEECH OUTPUT: 'â was a composer who was not square'"]))
 
 sequence.append(utils.StartRecordingAction())

Modified: trunk/test/keystrokes/firefox/html_struct_nav_lists.py
==============================================================================
--- trunk/test/keystrokes/firefox/html_struct_nav_lists.py	(original)
+++ trunk/test/keystrokes/firefox/html_struct_nav_lists.py	Mon Sep  8 00:29:44 2008
@@ -138,7 +138,7 @@
 sequence.append(utils.AssertPresentationAction(
     "l to next sub list in the third list", 
     ["BRAILLE LINE:  'â was a composer who was not square'",
-     "     VISIBLE:  'â was a composer who was not s', cursor=1",
+     "     VISIBLE:  'â was a composer who was not squ', cursor=1",
      "SPEECH OUTPUT: 'List with 2 items'",
      "SPEECH OUTPUT: 'Nesting level 1'",
      "SPEECH OUTPUT: 'â was a composer who was not square'"]))
@@ -191,7 +191,7 @@
 sequence.append(utils.AssertPresentationAction(
     "shift + l", 
     ["BRAILLE LINE:  'â was a composer who was not square'",
-     "     VISIBLE:  'â was a composer who was not s', cursor=1",
+     "     VISIBLE:  'â was a composer who was not squ', cursor=1",
      "SPEECH OUTPUT: 'List with 2 items'",
      "SPEECH OUTPUT: 'Nesting level 1'",
      "SPEECH OUTPUT: 'â was a composer who was not square'"]))

Modified: trunk/test/keystrokes/firefox/label_guess_bugzilla_search.py
==============================================================================
--- trunk/test/keystrokes/firefox/label_guess_bugzilla_search.py	(original)
+++ trunk/test/keystrokes/firefox/label_guess_bugzilla_search.py	Mon Sep  8 00:29:44 2008
@@ -141,7 +141,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Next form field", 
     ["BRAILLE LINE:  'AÂComment: contains the string Combo  $l'",
-     "     VISIBLE:  ' contains the string Combo  $l', cursor=1",
+     "     VISIBLE:  'contains the string Combo  $l', cursor=1",
      "SPEECH OUTPUT: ''",
      "SPEECH OUTPUT: 'AÂComment: contains the string combo box'"]))
 
@@ -152,7 +152,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Next form field", 
     ["BRAILLE LINE:  'AÂComment: contains the string Combo  $l'",
-     "     VISIBLE:  '  $l', cursor=1",
+     "     VISIBLE:  ' $l', cursor=1",
      "SPEECH OUTPUT: 'text'"]))
 
 sequence.append(utils.StartRecordingAction())

Modified: trunk/test/keystrokes/firefox/line_nav_bugzilla_search.py
==============================================================================
--- trunk/test/keystrokes/firefox/line_nav_bugzilla_search.py	(original)
+++ trunk/test/keystrokes/firefox/line_nav_bugzilla_search.py	Mon Sep  8 00:29:44 2008
@@ -51,7 +51,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Line Down",
     ["BRAILLE LINE:  'New bug Link  Browse Link   Search Link   Reports Link   Account Link   Admin Link   Help Link Logged In joanmarie diggs gmail com | Log Out Link'",
-     "     VISIBLE:  'New bug Link  Browse Link   ', cursor=1",
+     "     VISIBLE:  'New bug Link  Browse Link   Se', cursor=1",
      "SPEECH OUTPUT: 'New bug link  Browse link   Search link   Reports link   Account link   Admin link   Help link Logged In joanmarie diggs gmail com | Log Out link'"]))
 
 sequence.append(utils.StartRecordingAction())
@@ -170,7 +170,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Line Down",
     ["BRAILLE LINE:  'AÂComment: contains the string Combo  $l'",
-     "     VISIBLE:  'AÂComment: contains the string ', cursor=1",
+     "     VISIBLE:  'AÂComment: contains the string C', cursor=1",
      "SPEECH OUTPUT: 'AÂComment: contains the string combo box text'"]))
 
 sequence.append(utils.StartRecordingAction())
@@ -611,7 +611,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Line Down",
     ["BRAILLE LINE:  'SavedÂSearches: MyÂBugs and Patches Link | AllÂOrca Link  | Firefox Link  | openÂorca Link  | OpenÂRFEs Link'",
-     "     VISIBLE:  'SavedÂSearches: MyÂBugs and Pa', cursor=1",
+     "     VISIBLE:  'SavedÂSearches: MyÂBugs and Patc', cursor=1",
      "SPEECH OUTPUT: 'SavedÂSearches: MyÂBugs and Patches link | AllÂOrca link  | Firefox link  | openÂorca link  | OpenÂRFEs link'"]))
 
 ########################################################################
@@ -1055,7 +1055,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Line Up",
     ["BRAILLE LINE:  'AÂComment: contains the string Combo  $l'",
-     "     VISIBLE:  'AÂComment: contains the string ', cursor=1",
+     "     VISIBLE:  'AÂComment: contains the string C', cursor=1",
      "SPEECH OUTPUT: 'AÂComment: contains the string combo box text'"]))
 
 sequence.append(utils.StartRecordingAction())
@@ -1167,7 +1167,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Line Up",
     ["BRAILLE LINE:  'New bug Link  Â Browse Link  Â Search Link  Â Reports Link  Â Account Link  Â Admin Link  Â Help Link Logged In joanmarie diggs gmail com | Log Out Link'",
-     "     VISIBLE:  'New bug Link  Â Browse Link  Â', cursor=1",
+     "     VISIBLE:  'New bug Link  Â Browse Link  Â S', cursor=1",
      "SPEECH OUTPUT: 'New bug link  Â Browse link  Â Search link  Â Reports link  Â Account link  Â Admin link  Â Help link Logged In joanmarie diggs gmail com | Log Out link'"]))
 
 sequence.append(utils.StartRecordingAction())

Modified: trunk/test/keystrokes/firefox/line_nav_enter_bug.py
==============================================================================
--- trunk/test/keystrokes/firefox/line_nav_enter_bug.py	(original)
+++ trunk/test/keystrokes/firefox/line_nav_enter_bug.py	Mon Sep  8 00:29:44 2008
@@ -48,7 +48,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Line Down",
     ["BRAILLE LINE:  'New bug Link  Browse Link   Search Link   Reports Link   Account Link   Admin Link   Help Link Logged In joanmarie diggs gmail com | Log Out Link'",
-     "     VISIBLE:  'New bug Link  Browse Link   ', cursor=1",
+     "     VISIBLE:  'New bug Link  Browse Link   Se', cursor=1",
      "SPEECH OUTPUT: 'New bug link  Browse link   Search link   Reports link   Account link   Admin link   Help link Logged In joanmarie diggs gmail com | Log Out link'"]))
 
 sequence.append(utils.StartRecordingAction())
@@ -57,11 +57,11 @@
     "Line Down",
     ["BUG? - For some reason we're acting as if the page has just finished loading",
      "BRAILLE LINE:  'Enter Bug: orca â This page lets you enter a new bug into Bugzilla. h1'",
-     "     VISIBLE:  'Enter Bug: orca â This page le', cursor=1",
+     "     VISIBLE:  'Enter Bug: orca â This page lets', cursor=1",
      "BRAILLE LINE:  'Enter Bug: orca'",
      "     VISIBLE:  'Enter Bug: orca', cursor=0",
      "BRAILLE LINE:  'Enter Bug: orca â This page lets you enter a new bug into Bugzilla. h1'",
-     "     VISIBLE:  'Enter Bug: orca â This page le', cursor=1",
+     "     VISIBLE:  'Enter Bug: orca â This page lets', cursor=1",
      "SPEECH OUTPUT: 'Enter Bug: orca â This page lets you enter a new bug into Bugzilla. heading level 1'",
      "SPEECH OUTPUT: 'Enter Bug: orca page'",
      "SPEECH OUTPUT: 'Enter Bug: orca â This page lets you enter a new bug into Bugzilla. heading level 1'"]))
@@ -273,7 +273,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Line Down",
     ["BRAILLE LINE:  'SavedÂSearches: AllÂOrca Link | Firefox Link  | openÂorca Link  | OpenÂRFEs Link'",
-     "     VISIBLE:  'SavedÂSearches: AllÂOrca Link ', cursor=1",
+     "     VISIBLE:  'SavedÂSearches: AllÂOrca Link |', cursor=1",
      "SPEECH OUTPUT: 'SavedÂSearches: AllÂOrca link | Firefox link  | openÂorca link  | OpenÂRFEs link'"]))
 
 ########################################################################
@@ -469,7 +469,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Line Up",
     ["BRAILLE LINE:  'Enter Bug: orca â This page lets you enter a new bug into Bugzilla. h1'",
-     "     VISIBLE:  'Enter Bug: orca â This page le', cursor=1",
+     "     VISIBLE:  'Enter Bug: orca â This page lets', cursor=1",
      "SPEECH OUTPUT: 'Enter Bug: orca â This page lets you enter a new bug into Bugzilla. heading level 1'"]))
 
 sequence.append(utils.StartRecordingAction())
@@ -477,7 +477,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Line Up",
     ["BRAILLE LINE:  'New bug Link  Â Browse Link  Â Search Link  Â Reports Link  Â Account Link  Â Admin Link  Â Help Link Logged In joanmarie diggs gmail com | Log Out Link'",
-     "     VISIBLE:  'New bug Link  Â Browse Link  Â', cursor=1",
+     "     VISIBLE:  'New bug Link  Â Browse Link  Â S', cursor=1",
      "SPEECH OUTPUT: 'New bug link  Â Browse link  Â Search link  Â Reports link  Â Account link  Â Admin link  Â Help link Logged In joanmarie diggs gmail com | Log Out link'"]))
 
 sequence.append(utils.StartRecordingAction())

Modified: trunk/test/keystrokes/firefox/line_nav_multi_line_text.py
==============================================================================
--- trunk/test/keystrokes/firefox/line_nav_multi_line_text.py	(original)
+++ trunk/test/keystrokes/firefox/line_nav_multi_line_text.py	Mon Sep  8 00:29:44 2008
@@ -98,7 +98,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Line Down",
     ["BRAILLE LINE:  'â This is a test Link  that is not very interesting.'",
-     "     VISIBLE:  'â This is a test Link  that is', cursor=1",
+     "     VISIBLE:  'â This is a test Link  that is n', cursor=1",
      "SPEECH OUTPUT: 'â This is a test link  that is not very interesting.'"]))
 
 sequence.append(utils.StartRecordingAction())
@@ -106,7 +106,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Line Down",
     ["BRAILLE LINE:  'â But it looks like Link  a real-world example.'",
-     "     VISIBLE:  'â But it looks like Link  a re', cursor=1",
+     "     VISIBLE:  'â But it looks like Link  a real', cursor=1",
      "SPEECH OUTPUT: 'â But it looks like link  a real-world example.'"]))
 
 sequence.append(utils.StartRecordingAction())
@@ -114,7 +114,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Line Down",
     ["BRAILLE LINE:  'â And that's Link  why this silly test is here.'",
-     "     VISIBLE:  'â And that's Link  why this si', cursor=1",
+     "     VISIBLE:  'â And that's Link  why this sill', cursor=1",
      "SPEECH OUTPUT: 'â And that's link  why this silly test is here.'"]))
 
 sequence.append(utils.StartRecordingAction())
@@ -138,7 +138,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Line Down",
     ["BRAILLE LINE:  'â The thing is Link  we can't copy content.'",
-     "     VISIBLE:  'â The thing is Link  we can't ', cursor=1",
+     "     VISIBLE:  'â The thing is Link  we can't co', cursor=1",
      "SPEECH OUTPUT: 'â The thing is link  we can't copy content.'"]))
 
 sequence.append(utils.StartRecordingAction())
@@ -146,7 +146,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Line Down",
     ["BRAILLE LINE:  'â So we must Link  create silly tests.'",
-     "     VISIBLE:  'â So we must Link  create sill', cursor=1",
+     "     VISIBLE:  'â So we must Link  create silly ', cursor=1",
      "SPEECH OUTPUT: 'â So we must link  create silly tests.'",]))
 
 sequence.append(utils.StartRecordingAction())
@@ -181,7 +181,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Line Up",
     ["BRAILLE LINE:  'â So we must Link  create silly tests.'",
-     "     VISIBLE:  'â So we must Link  create sill', cursor=1",
+     "     VISIBLE:  'â So we must Link  create silly ', cursor=1",
      "SPEECH OUTPUT: 'â So we must link  create silly tests.'",]))
 
 sequence.append(utils.StartRecordingAction())
@@ -189,7 +189,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Line Up",
     ["BRAILLE LINE:  'â The thing is Link  we can't copy content.'",
-     "     VISIBLE:  'â The thing is Link  we can't ', cursor=1",
+     "     VISIBLE:  'â The thing is Link  we can't co', cursor=1",
      "SPEECH OUTPUT: 'â The thing is link  we can't copy content.'"]))
 
 sequence.append(utils.StartRecordingAction())
@@ -213,7 +213,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Line Up",
     ["BRAILLE LINE:  'â And that's Link  why this silly test is here.'",
-     "     VISIBLE:  'â And that's Link  why this si', cursor=1",
+     "     VISIBLE:  'â And that's Link  why this sill', cursor=1",
      "SPEECH OUTPUT: 'â And that's link  why this silly test is here.'"]))
 
 sequence.append(utils.StartRecordingAction())
@@ -221,7 +221,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Line Up",
     ["BRAILLE LINE:  'â But it looks like Link  a real-world example.'",
-     "     VISIBLE:  'â But it looks like Link  a re', cursor=1",
+     "     VISIBLE:  'â But it looks like Link  a real', cursor=1",
      "SPEECH OUTPUT: 'â But it looks like link  a real-world example.'"]))
 
 sequence.append(utils.StartRecordingAction())
@@ -229,7 +229,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Line Up",
     ["BRAILLE LINE:  'â This is a test Link  that is not very interesting.'",
-     "     VISIBLE:  'â This is a test Link  that is', cursor=1",
+     "     VISIBLE:  'â This is a test Link  that is n', cursor=1",
      "SPEECH OUTPUT: 'â This is a test link  that is not very interesting.'"]))
 
 sequence.append(utils.StartRecordingAction())

Modified: trunk/test/keystrokes/firefox/line_nav_nested_tables.py
==============================================================================
--- trunk/test/keystrokes/firefox/line_nav_nested_tables.py	(original)
+++ trunk/test/keystrokes/firefox/line_nav_nested_tables.py	Mon Sep  8 00:29:44 2008
@@ -37,7 +37,7 @@
 sequence.append(utils.AssertPresentationAction(
     "1. line Down",
     ["BRAILLE LINE:  'Campus Link ÂÂ. Classroom Link ÂÂ. Communicate Link ÂÂ. Reports Link'",
-     "     VISIBLE:  'Campus Link ÂÂ. Classroom Link', cursor=1",
+     "     VISIBLE:  'Campus Link ÂÂ. Classroom Link Â', cursor=1",
      "SPEECH OUTPUT: 'Campus link ÂÂ.ÂÂ Classroom link ÂÂ.ÂÂ Communicate link ÂÂ.ÂÂ Reports link Â'"]))
 
 sequence.append(utils.StartRecordingAction())
@@ -216,7 +216,7 @@
 sequence.append(utils.AssertPresentationAction(
     "11. line Up",
     ["BRAILLE LINE:  'Campus Link ÂÂ. Classroom Link ÂÂ. Communicate Link ÂÂ. Reports Link'",
-     "     VISIBLE:  'Campus Link ÂÂ. Classroom Link', cursor=1",
+     "     VISIBLE:  'Campus Link ÂÂ. Classroom Link Â', cursor=1",
      "SPEECH OUTPUT: 'Campus link ÂÂ.ÂÂ Classroom link ÂÂ.ÂÂ Communicate link ÂÂ.ÂÂ Reports link Â'"]))
 
 sequence.append(utils.StartRecordingAction())

Modified: trunk/test/keystrokes/firefox/line_nav_wiki.py
==============================================================================
--- trunk/test/keystrokes/firefox/line_nav_wiki.py	(original)
+++ trunk/test/keystrokes/firefox/line_nav_wiki.py	Mon Sep  8 00:29:44 2008
@@ -300,7 +300,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Line Down", 
     ["BRAILLE LINE:  'Darragh à HÃiligh Link has created several audio guides for Orca. This is a fantastic contribution'",
-     "     VISIBLE:  'Darragh à HÃiligh Link has cre', cursor=1",
+     "     VISIBLE:  'Darragh à HÃiligh Link has creat', cursor=1",
      "SPEECH OUTPUT: 'Darragh à HÃiligh link has created several audio guides for Orca. This is a fantastic contribution'"]))
 
 sequence.append(utils.StartRecordingAction())
@@ -324,7 +324,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Line Down", 
     ["BRAILLE LINE:  'â Walk through of the installation of Ubuntu 7.4. Very helpful tutorial Link'",
-     "     VISIBLE:  'â Walk through of the installa', cursor=1",
+     "     VISIBLE:  'â Walk through of the installati', cursor=1",
      "SPEECH OUTPUT: 'â Walk through of the installation of Ubuntu 7.4. Very helpful tutorial link'"]))
 
 sequence.append(utils.StartRecordingAction())
@@ -332,7 +332,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Line Down", 
     ["BRAILLE LINE:  'â Review of Fedora 7 and the Orca screen reader for the Gnome graphical desktop Link'",
-     "     VISIBLE:  'â Review of Fedora 7 and the O', cursor=1",
+     "     VISIBLE:  'â Review of Fedora 7 and the Orc', cursor=1",
      "SPEECH OUTPUT: 'â Review of Fedora 7 and the Orca screen reader for the Gnome graphical desktop link'"]))
 
 sequence.append(utils.StartRecordingAction())
@@ -340,7 +340,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Line Down", 
     ["BRAILLE LINE:  'â Guide to installing the latest versions of Firefox and Orca Link'",
-     "     VISIBLE:  'â Guide to installing the late', cursor=1",
+     "     VISIBLE:  'â Guide to installing the latest', cursor=1",
      "SPEECH OUTPUT: 'â Guide to installing the latest versions of Firefox and Orca link'"]))
 
 sequence.append(utils.StartRecordingAction())
@@ -596,7 +596,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Line Down",
     ["BRAILLE LINE:  'â Frequently Asked Questions: FAQ Link'",
-     "     VISIBLE:  'â Frequently Asked Questions: ', cursor=1",
+     "     VISIBLE:  'â Frequently Asked Questions: FA', cursor=1",
      "SPEECH OUTPUT: 'â Frequently Asked Questions: FAQ link'"]))
 
 sequence.append(utils.StartRecordingAction())
@@ -604,7 +604,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Line Down",
     ["BRAILLE LINE:  'â Mailing list: orca-list gnome org Link  ( Archives Link )'",
-     "     VISIBLE:  'â Mailing list: orca-list gnom', cursor=1",
+     "     VISIBLE:  'â Mailing list: orca-list gnome ', cursor=1",
      "SPEECH OUTPUT: 'â Mailing list: orca-list gnome org link  ( Archives link )'"]))
 
 sequence.append(utils.StartRecordingAction())
@@ -612,7 +612,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Line Down",
     ["BRAILLE LINE:  'â Bug database: GNOME Bug Tracking System (Bugzilla) Link  ( current bug list Link )'",
-     "     VISIBLE:  'â Bug database: GNOME Bug Trac', cursor=1",
+     "     VISIBLE:  'â Bug database: GNOME Bug Tracki', cursor=1",
      "SPEECH OUTPUT: 'â Bug database: GNOME Bug Tracking System (Bugzilla) link  ( current bug list link )'"]))
 
 sequence.append(utils.StartRecordingAction())
@@ -620,7 +620,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Line Down",
     ["BRAILLE LINE:  'â Design documents: Orca Documentation Series Link'",
-     "     VISIBLE:  'â Design documents: Orca Docum', cursor=1",
+     "     VISIBLE:  'â Design documents: Orca Documen', cursor=1",
      "SPEECH OUTPUT: 'â Design documents: Orca Documentation Series link'"]))
 
 sequence.append(utils.StartRecordingAction())
@@ -628,7 +628,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Line Down",
     ["BRAILLE LINE:  'â Dive Into Python, Mark Pilgrim Link'",
-     "     VISIBLE:  'â Dive Into Python, Mark Pilgr', cursor=1",
+     "     VISIBLE:  'â Dive Into Python, Mark Pilgrim', cursor=1",
      "SPEECH OUTPUT: 'â Dive Into Python, Mark Pilgrim link'"]))
 
 sequence.append(utils.StartRecordingAction())
@@ -636,7 +636,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Line Down",
     ["BRAILLE LINE:  'â Python in a Nutshell, Alex Martelli Link'",
-     "     VISIBLE:  'â Python in a Nutshell, Alex M', cursor=1",
+     "     VISIBLE:  'â Python in a Nutshell, Alex Mar', cursor=1",
      "SPEECH OUTPUT: 'â Python in a Nutshell, Alex Martelli link'"]))
 
 sequence.append(utils.StartRecordingAction())
@@ -644,7 +644,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Line Down",
     ["BRAILLE LINE:  'â Python Pocket Reference, Mark Lutz Link'",
-     "     VISIBLE:  'â Python Pocket Reference, Mar', cursor=1",
+     "     VISIBLE:  'â Python Pocket Reference, Mark ', cursor=1",
      "SPEECH OUTPUT: 'â Python Pocket Reference, Mark Lutz link'"]))
 
 sequence.append(utils.StartRecordingAction())
@@ -889,7 +889,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Line Up",
     ["BRAILLE LINE:  'â Python Pocket Reference, Mark Lutz Link'",
-     "     VISIBLE:  'â Python Pocket Reference, Mar', cursor=1",
+     "     VISIBLE:  'â Python Pocket Reference, Mark ', cursor=1",
      "SPEECH OUTPUT: 'â Python Pocket Reference, Mark Lutz link'"]))
 
 sequence.append(utils.StartRecordingAction())
@@ -897,7 +897,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Line Up",
     ["BRAILLE LINE:  'â Python in a Nutshell, Alex Martelli Link'",
-     "     VISIBLE:  'â Python in a Nutshell, Alex M', cursor=1",
+     "     VISIBLE:  'â Python in a Nutshell, Alex Mar', cursor=1",
      "SPEECH OUTPUT: 'â Python in a Nutshell, Alex Martelli link'"]))
 
 sequence.append(utils.StartRecordingAction())
@@ -905,7 +905,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Line Up",
     ["BRAILLE LINE:  'â Dive Into Python, Mark Pilgrim Link'",
-     "     VISIBLE:  'â Dive Into Python, Mark Pilgr', cursor=1",
+     "     VISIBLE:  'â Dive Into Python, Mark Pilgrim', cursor=1",
      "SPEECH OUTPUT: 'â Dive Into Python, Mark Pilgrim link'"]))
 
 sequence.append(utils.StartRecordingAction())
@@ -913,7 +913,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Line Up",
     ["BRAILLE LINE:  'â Design documents: Orca Documentation Series Link'",
-     "     VISIBLE:  'â Design documents: Orca Docum', cursor=1",
+     "     VISIBLE:  'â Design documents: Orca Documen', cursor=1",
      "SPEECH OUTPUT: 'â Design documents: Orca Documentation Series link'"]))
 
 sequence.append(utils.StartRecordingAction())
@@ -921,7 +921,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Line Up",
     ["BRAILLE LINE:  'â Bug database: GNOME Bug Tracking System (Bugzilla) Link  ( current bug list Link )'",
-     "     VISIBLE:  'â Bug database: GNOME Bug Trac', cursor=1",
+     "     VISIBLE:  'â Bug database: GNOME Bug Tracki', cursor=1",
      "SPEECH OUTPUT: 'â Bug database: GNOME Bug Tracking System (Bugzilla) link  ( current bug list link )'"]))
 
 sequence.append(utils.StartRecordingAction())
@@ -929,7 +929,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Line Up",
     ["BRAILLE LINE:  'â Mailing list: orca-list gnome org Link  ( Archives Link )'",
-     "     VISIBLE:  'â Mailing list: orca-list gnom', cursor=1",
+     "     VISIBLE:  'â Mailing list: orca-list gnome ', cursor=1",
      "SPEECH OUTPUT: 'â Mailing list: orca-list gnome org link  ( Archives link )'"]))
 
 sequence.append(utils.StartRecordingAction())
@@ -937,7 +937,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Line Up",
     ["BRAILLE LINE:  'â Frequently Asked Questions: FAQ Link'",
-     "     VISIBLE:  'â Frequently Asked Questions: ', cursor=1",
+     "     VISIBLE:  'â Frequently Asked Questions: FA', cursor=1",
      "SPEECH OUTPUT: 'â Frequently Asked Questions: FAQ link'"]))
 
 sequence.append(utils.StartRecordingAction())
@@ -1193,7 +1193,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Line Up", 
     ["BRAILLE LINE:  'â Guide to installing the latest versions of Firefox and Orca Link'",
-     "     VISIBLE:  'â Guide to installing the late', cursor=1",
+     "     VISIBLE:  'â Guide to installing the latest', cursor=1",
      "SPEECH OUTPUT: 'â Guide to installing the latest versions of Firefox and Orca link'"]))
 
 sequence.append(utils.StartRecordingAction())
@@ -1201,7 +1201,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Line Up", 
     ["BRAILLE LINE:  'â Review of Fedora 7 and the Orca screen reader for the Gnome graphical desktop Link'",
-     "     VISIBLE:  'â Review of Fedora 7 and the O', cursor=1",
+     "     VISIBLE:  'â Review of Fedora 7 and the Orc', cursor=1",
      "SPEECH OUTPUT: 'â Review of Fedora 7 and the Orca screen reader for the Gnome graphical desktop link'"]))
 
 sequence.append(utils.StartRecordingAction())
@@ -1209,7 +1209,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Line Up", 
     ["BRAILLE LINE:  'â Walk through of the installation of Ubuntu 7.4. Very helpful tutorial Link'",
-     "     VISIBLE:  'â Walk through of the installa', cursor=1",
+     "     VISIBLE:  'â Walk through of the installati', cursor=1",
      "SPEECH OUTPUT: 'â Walk through of the installation of Ubuntu 7.4. Very helpful tutorial link'"]))
 
 sequence.append(utils.StartRecordingAction())
@@ -1233,7 +1233,7 @@
 sequence.append(utils.AssertPresentationAction(
     "Line Up", 
     ["BRAILLE LINE:  'Darragh à HÃiligh Link has created several audio guides for Orca. This is a fantastic contribution'",
-     "     VISIBLE:  'Darragh à HÃiligh Link has cre', cursor=1",
+     "     VISIBLE:  'Darragh à HÃiligh Link has creat', cursor=1",
      "SPEECH OUTPUT: 'Darragh à HÃiligh link has created several audio guides for Orca. This is a fantastic contribution'"]))
 
 sequence.append(utils.StartRecordingAction())

Modified: trunk/test/keystrokes/firefox/xul_role_radio_button.py
==============================================================================
--- trunk/test/keystrokes/firefox/xul_role_radio_button.py	(original)
+++ trunk/test/keystrokes/firefox/xul_role_radio_button.py	Mon Sep  8 00:29:44 2008
@@ -20,6 +20,7 @@
 sequence.append(KeyComboAction("<Alt>f"))
 
 sequence.append(KeyComboAction("p"))
+sequence.append(PauseAction(3000))
 
 ########################################################################
 # Press Alt A to jump to the radio button group
@@ -28,10 +29,10 @@
 sequence.append(KeyComboAction("<Alt>a"))
 sequence.append(utils.AssertPresentationAction(
     "Alt a to radio button group",
-    ["BRAILLE LINE:  'Minefield Application Print Dialog TabList General Page Print Pages Filler &=y All RadioButton'",
-     "     VISIBLE:  '&=y All RadioButton', cursor=1",
-     "SPEECH OUTPUT: 'Print Pages'",
-     "SPEECH OUTPUT: 'All selected radio button'"]))
+    ["BRAILLE LINE:  'Minefield Application Print Dialog TabList General Page Range Filler &=y All Pages RadioButton'",
+     "     VISIBLE:  '&=y All Pages RadioButton', cursor=1",
+     "SPEECH OUTPUT: 'Range'",
+     "SPEECH OUTPUT: 'All Pages selected radio button'"]))
 
 ########################################################################
 # Do a basic "Where Am I" via KP_Enter. 
@@ -41,10 +42,10 @@
 sequence.append(PauseAction(3000))
 sequence.append(utils.AssertPresentationAction(
     "Basic Where Am I", 
-    ["BRAILLE LINE:  'Minefield Application Print Dialog TabList General Page Print Pages Filler &=y All RadioButton'",
-     "     VISIBLE:  '&=y All RadioButton', cursor=1",
-     "SPEECH OUTPUT: 'Print Pages'",
-     "SPEECH OUTPUT: 'All radio button'",
+    ["BRAILLE LINE:  'Minefield Application Print Dialog TabList General Page Range Filler &=y All Pages RadioButton'",
+     "     VISIBLE:  '&=y All Pages RadioButton', cursor=1",
+     "SPEECH OUTPUT: 'Range'",
+     "SPEECH OUTPUT: 'All Pages radio button'",
      "SPEECH OUTPUT: 'selected'",
      "SPEECH OUTPUT: 'item 1 of 3'",
      "SPEECH OUTPUT: 'Alt a'"]))
@@ -56,10 +57,10 @@
 sequence.append(KeyComboAction("Down"))
 sequence.append(utils.AssertPresentationAction(
     "Down Arrow to next radio button",
-    ["BRAILLE LINE:  'Minefield Application Print Dialog TabList General Page Print Pages Filler & y Range RadioButton'",
-     "     VISIBLE:  '& y Range RadioButton', cursor=1",
+    ["BRAILLE LINE:  'Minefield Application Print Dialog TabList General Page Range Filler & y Pages: RadioButton'",
+     "     VISIBLE:  '& y Pages: RadioButton', cursor=1",
      "SPEECH OUTPUT: ''",
-     "SPEECH OUTPUT: 'Range not selected radio button'"]))
+     "SPEECH OUTPUT: 'Pages: not selected radio button'"]))
 
 ########################################################################
 # Do a basic "Where Am I" via KP_Enter. 
@@ -69,13 +70,13 @@
 sequence.append(PauseAction(3000))
 sequence.append(utils.AssertPresentationAction(
     "Basic Where Am I", 
-    ["BRAILLE LINE:  'Minefield Application Print Dialog TabList General Page Print Pages Filler &=y Range RadioButton'",
-     "     VISIBLE:  '&=y Range RadioButton', cursor=1",
-     "SPEECH OUTPUT: 'Print Pages'",
-     "SPEECH OUTPUT: 'Range radio button'",
+    ["BRAILLE LINE:  'Minefield Application Print Dialog TabList General Page Range Filler &=y Pages: RadioButton'",
+     "     VISIBLE:  '&=y Pages: RadioButton', cursor=1",
+     "SPEECH OUTPUT: 'Range'",
+     "SPEECH OUTPUT: 'Pages: radio button'",
      "SPEECH OUTPUT: 'selected'",
      "SPEECH OUTPUT: 'item 3 of 3'",
-     "SPEECH OUTPUT: 'Alt n'"]))
+     "SPEECH OUTPUT: 'Alt e'"]))
 
 ########################################################################
 # Dismiss the dialog by pressing Escape and wait for the location bar

Modified: trunk/test/keystrokes/firefox/xul_role_tree.py
==============================================================================
--- trunk/test/keystrokes/firefox/xul_role_tree.py	(original)
+++ trunk/test/keystrokes/firefox/xul_role_tree.py	Mon Sep  8 00:29:44 2008
@@ -146,7 +146,7 @@
      "     VISIBLE:  'Recently Bookmarked ListItem', cursor=1",
      "SPEECH OUTPUT: 'list item'",
      "SPEECH OUTPUT: 'Recently Bookmarked'",
-     "SPEECH OUTPUT: 'item 1 of 7'",
+     "SPEECH OUTPUT: 'item 1 of 4'",
      "SPEECH OUTPUT: 'tree level 3'"]))
 
 ########################################################################



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]