summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordobey <dobey>2006-08-24 20:11:41 +0000
committerdobey <dobey>2006-08-24 20:11:41 +0000
commit6f167d3a1f7277bdac7fc8a9d5d59d6080e408d4 (patch)
tree83fc8e517412898ef66b8b114fe661124ef0dc5f
parentfd0f082ce90144712164e0ea277ac080c2485670 (diff)
2006-08-24 Rodney Dawes <dobey@novell.com>
* scripts/gnome-*-properties.py: * scripts/gnome-*-preferences.py: Add some more scripts to scan for a11y properties in control-center
-rw-r--r--ChangeLog6
-rwxr-xr-xscripts/gnome-accessibility-keyboard-properties.py19
-rwxr-xr-xscripts/gnome-at-properties.py19
-rwxr-xr-xscripts/gnome-default-applications-properties.py19
-rwxr-xr-xscripts/gnome-display-properties.py19
-rwxr-xr-xscripts/gnome-font-properties.py19
-rwxr-xr-xscripts/gnome-keybinding-properties.py19
-rwxr-xr-xscripts/gnome-keyboard-properties.py19
-rwxr-xr-xscripts/gnome-network-preferences.py19
-rwxr-xr-xscripts/gnome-passwd.py19
-rwxr-xr-xscripts/gnome-sound-properties.py19
-rwxr-xr-xscripts/gnome-theme-manager.py19
-rwxr-xr-xscripts/gnome-ui-properties.py19
-rwxr-xr-xscripts/gnome-window-properties.py19
14 files changed, 253 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 1bb3f60..1b88213 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-08-24 Rodney Dawes <dobey@novell.com>
+
+ * scripts/gnome-*-properties.py:
+ * scripts/gnome-*-preferences.py:
+ Add some more scripts to scan for a11y properties in control-center
+
2006-08-21 Rodney Dawes <dobey@novell.com>
* python/A11yTestUtils.py: Add GPL notice into copyright header
diff --git a/scripts/gnome-accessibility-keyboard-properties.py b/scripts/gnome-accessibility-keyboard-properties.py
new file mode 100755
index 0000000..21ab80c
--- /dev/null
+++ b/scripts/gnome-accessibility-keyboard-properties.py
@@ -0,0 +1,19 @@
+#!/usr/bin/python
+
+import string, sys, os
+from ldtp import *
+from ldtputils import *
+from A11yTestUtils import *
+
+program_name = 'gnome-accessibility-keyboard-properties'
+window_title = 'Keyboard Accessibility Preferences (AccessX)'
+
+a11y_test_init (program_name)
+
+guiexist (window_title)
+
+a11y_scan_window (window_title)
+
+click (window_title, 'btnClose')
+
+a11y_test_shutdown ()
diff --git a/scripts/gnome-at-properties.py b/scripts/gnome-at-properties.py
new file mode 100755
index 0000000..c6d8a66
--- /dev/null
+++ b/scripts/gnome-at-properties.py
@@ -0,0 +1,19 @@
+#!/usr/bin/python
+
+import string, sys, os
+from ldtp import *
+from ldtputils import *
+from A11yTestUtils import *
+
+program_name = 'gnome-at-properties'
+window_title = 'Assistive Technology Preferences'
+
+a11y_test_init (program_name)
+
+guiexist (window_title)
+
+a11y_scan_window (window_title)
+
+click (window_title, 'btnClose')
+
+a11y_test_shutdown ()
diff --git a/scripts/gnome-default-applications-properties.py b/scripts/gnome-default-applications-properties.py
new file mode 100755
index 0000000..7259dc8
--- /dev/null
+++ b/scripts/gnome-default-applications-properties.py
@@ -0,0 +1,19 @@
+#!/usr/bin/python
+
+import string, sys, os
+from ldtp import *
+from ldtputils import *
+from A11yTestUtils import *
+
+program_name = 'gnome-default-applications-properties'
+window_title = 'Preferred Applications'
+
+a11y_test_init (program_name)
+
+guiexist (window_title)
+
+a11y_scan_window (window_title)
+
+click (window_title, 'btnClose')
+
+a11y_test_shutdown ()
diff --git a/scripts/gnome-display-properties.py b/scripts/gnome-display-properties.py
new file mode 100755
index 0000000..0e26794
--- /dev/null
+++ b/scripts/gnome-display-properties.py
@@ -0,0 +1,19 @@
+#!/usr/bin/python
+
+import string, sys, os
+from ldtp import *
+from ldtputils import *
+from A11yTestUtils import *
+
+program_name = 'gnome-display-properties'
+window_title = 'Screen Resolution Preferences'
+
+a11y_test_init (program_name)
+
+guiexist (window_title)
+
+a11y_scan_window (window_title)
+
+click (window_title, 'btnClose')
+
+a11y_test_shutdown ()
diff --git a/scripts/gnome-font-properties.py b/scripts/gnome-font-properties.py
new file mode 100755
index 0000000..fae0925
--- /dev/null
+++ b/scripts/gnome-font-properties.py
@@ -0,0 +1,19 @@
+#!/usr/bin/python
+
+import string, sys, os
+from ldtp import *
+from ldtputils import *
+from A11yTestUtils import *
+
+program_name = 'gnome-font-properties'
+window_title = 'Font Preferences'
+
+a11y_test_init (program_name)
+
+guiexist (window_title)
+
+a11y_scan_window (window_title)
+
+click (window_title, 'btnClose')
+
+a11y_test_shutdown ()
diff --git a/scripts/gnome-keybinding-properties.py b/scripts/gnome-keybinding-properties.py
new file mode 100755
index 0000000..e99ba39
--- /dev/null
+++ b/scripts/gnome-keybinding-properties.py
@@ -0,0 +1,19 @@
+#!/usr/bin/python
+
+import string, sys, os
+from ldtp import *
+from ldtputils import *
+from A11yTestUtils import *
+
+program_name = 'gnome-keybinding-properties'
+window_title = 'Keyboard Shortcuts'
+
+a11y_test_init (program_name)
+
+guiexist (window_title)
+
+a11y_scan_window (window_title)
+
+click (window_title, 'btnClose')
+
+a11y_test_shutdown ()
diff --git a/scripts/gnome-keyboard-properties.py b/scripts/gnome-keyboard-properties.py
new file mode 100755
index 0000000..36a278a
--- /dev/null
+++ b/scripts/gnome-keyboard-properties.py
@@ -0,0 +1,19 @@
+#!/usr/bin/python
+
+import string, sys, os
+from ldtp import *
+from ldtputils import *
+from A11yTestUtils import *
+
+program_name = 'gnome-keyboard-properties'
+window_title = 'Keyboard Preferences'
+
+a11y_test_init (program_name)
+
+guiexist (window_title)
+
+a11y_scan_window (window_title)
+
+click (window_title, 'btnClose')
+
+a11y_test_shutdown ()
diff --git a/scripts/gnome-network-preferences.py b/scripts/gnome-network-preferences.py
new file mode 100755
index 0000000..1752e4f
--- /dev/null
+++ b/scripts/gnome-network-preferences.py
@@ -0,0 +1,19 @@
+#!/usr/bin/python
+
+import string, sys, os
+from ldtp import *
+from ldtputils import *
+from A11yTestUtils import *
+
+program_name = 'gnome-network-preferences'
+window_title = 'Network Proxy Preferences'
+
+a11y_test_init (program_name)
+
+guiexist (window_title)
+
+a11y_scan_window (window_title)
+
+click (window_title, 'btnClose')
+
+a11y_test_shutdown ()
diff --git a/scripts/gnome-passwd.py b/scripts/gnome-passwd.py
new file mode 100755
index 0000000..aa1fe8a
--- /dev/null
+++ b/scripts/gnome-passwd.py
@@ -0,0 +1,19 @@
+#!/usr/bin/python
+
+import string, sys, os
+from ldtp import *
+from ldtputils import *
+from A11yTestUtils import *
+
+program_name = 'gnome-background-properties'
+window_title = 'Desktop Background Preferences'
+
+a11y_test_init (program_name)
+
+guiexist (window_title)
+
+a11y_scan_window (window_title)
+
+click (window_title, 'btnClose')
+
+a11y_test_shutdown ()
diff --git a/scripts/gnome-sound-properties.py b/scripts/gnome-sound-properties.py
new file mode 100755
index 0000000..b78e3b9
--- /dev/null
+++ b/scripts/gnome-sound-properties.py
@@ -0,0 +1,19 @@
+#!/usr/bin/python
+
+import string, sys, os
+from ldtp import *
+from ldtputils import *
+from A11yTestUtils import *
+
+program_name = 'gnome-sound-properties'
+window_title = 'Sound Preferences'
+
+a11y_test_init (program_name)
+
+guiexist (window_title)
+
+a11y_scan_window (window_title)
+
+click (window_title, 'btnClose')
+
+a11y_test_shutdown ()
diff --git a/scripts/gnome-theme-manager.py b/scripts/gnome-theme-manager.py
new file mode 100755
index 0000000..aa1fe8a
--- /dev/null
+++ b/scripts/gnome-theme-manager.py
@@ -0,0 +1,19 @@
+#!/usr/bin/python
+
+import string, sys, os
+from ldtp import *
+from ldtputils import *
+from A11yTestUtils import *
+
+program_name = 'gnome-background-properties'
+window_title = 'Desktop Background Preferences'
+
+a11y_test_init (program_name)
+
+guiexist (window_title)
+
+a11y_scan_window (window_title)
+
+click (window_title, 'btnClose')
+
+a11y_test_shutdown ()
diff --git a/scripts/gnome-ui-properties.py b/scripts/gnome-ui-properties.py
new file mode 100755
index 0000000..c2ef5a4
--- /dev/null
+++ b/scripts/gnome-ui-properties.py
@@ -0,0 +1,19 @@
+#!/usr/bin/python
+
+import string, sys, os
+from ldtp import *
+from ldtputils import *
+from A11yTestUtils import *
+
+program_name = 'gnome-ui-properties'
+window_title = 'Menu and Toolbar Preferences'
+
+a11y_test_init (program_name)
+
+guiexist (window_title)
+
+a11y_scan_window (window_title)
+
+click (window_title, 'btnClose')
+
+a11y_test_shutdown ()
diff --git a/scripts/gnome-window-properties.py b/scripts/gnome-window-properties.py
new file mode 100755
index 0000000..ff37aae
--- /dev/null
+++ b/scripts/gnome-window-properties.py
@@ -0,0 +1,19 @@
+#!/usr/bin/python
+
+import string, sys, os
+from ldtp import *
+from ldtputils import *
+from A11yTestUtils import *
+
+program_name = 'gnome-window-properties'
+window_title = 'Window Preferences'
+
+a11y_test_init (program_name)
+
+guiexist (window_title)
+
+a11y_scan_window (window_title)
+
+click (window_title, 'btnClose')
+
+a11y_test_shutdown ()