summaryrefslogtreecommitdiff
path: root/scripts/gnome-at-properties.py
blob: c6d8a66fb350bc6a4b61f9aa5224df8f71b65a8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 ()