Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/test/test2.py
blob: c0958c857ec0870396647e559b320531b2f6ce37 (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
#!/usr/bin/python

# This test opens a password encrypted file and tries to unlock it.

from dogtail.procedural import *

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')
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')
click('OK', roleName='push button')

# Close evince
click('File', roleName='menu')
click('Close', roleName='menu item')