Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/test/test2.py
diff options
context:
space:
mode:
authorWouter Bolsterlee <wbolster@cvs.gnome.org>2006-10-29 12:48:48 (GMT)
committer Wouter Bolsterlee <wbolster@src.gnome.org>2006-10-29 12:48:48 (GMT)
commiteb0b518aaf980993486c6e132b2df367d3ed76ca (patch)
tree95c7733053bb60294f5dda48091720ce51a44da0 /test/test2.py
parent46dd6bbf290e60f7642efcd8d0454b8ee21a3834 (diff)
Cleaned up the dogtail scripts.
2006-10-29 Wouter Bolsterlee <wbolster@cvs.gnome.org> * test/test1.py: * test/test2.py: Cleaned up the dogtail scripts.
Diffstat (limited to 'test/test2.py')
-rwxr-xr-xtest/test2.py20
1 files changed, 11 insertions, 9 deletions
diff --git a/test/test2.py b/test/test2.py
index 7e52c57..c0958c8 100755
--- a/test/test2.py
+++ b/test/test2.py
@@ -1,22 +1,24 @@
#!/usr/bin/python
-from dogtail.procedural import *
-from dogtail.utils import screenshot
+# This test opens a password encrypted file and tries to unlock it.
-import os
+from dogtail.procedural import *
-os.environ['LANG']='en_US.UTF-8'
-os.system ('rm -rf ~/.gnome2/evince')
+run('evince', arguments=' ./test-encrypt.pdf',)
-run('evince',arguments=' ./test-encrypt.pdf',)
+# Try an incorrect password first
focus.dialog('Enter password')
focus.widget('Password Entry', roleName='password text')
-type("wrong password")
+type('wrong password')
click('OK', roleName='push button')
click('Cancel', roleName='push button')
+
+# Try again with the correct password
click('Unlock Document', roleName='push button')
focus.widget('Password Entry', roleName='password text')
-type("Foo")
+type('Foo')
click('OK', roleName='push button')
-click('Close', roleName='menu item')
+# Close evince
+click('File', roleName='menu')
+click('Close', roleName='menu item')