summaryrefslogtreecommitdiff
path: root/scripts/gnome-theme-manager.py
blob: eb4e38805c9cf01e4f809db6251aacec112a086f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/python

import string, sys, os
from ldtp import *
from ldtputils import *
from A11yTestUtils import *

program_name = 'gnome-theme-manager'
window_title = 'Theme Preferences'

a11y_test_init (program_name)

guiexist (window_title)

a11y_scan_window (window_title)
	
click (window_title, 'btnInstallTheme')
a11y_scan_dialog ('dlgThemeInstallation', 'btnCancel')

click (window_title, 'btnThemeDetails')
a11y_scan_dialog ('dlgThemeDetails', 'btnClose')

click (window_title, 'btnClose')

a11y_test_shutdown ()