summaryrefslogtreecommitdiff
path: root/test/test2.py
blob: f4263e521a55e9403415d8d3df871635dec99b7f (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
26
27
28
29
#!/usr/bin/python3

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

import os
os.environ['LANG']='C'
srcdir = os.environ['srcdir']

from dogtail.procedural import *

run('atril', arguments=' '+srcdir+'/test-encrypt.pdf')

# Try an incorrect password first
type('wrong password')
click('Unlock Document', roleName='push button')
focus.dialog('Enter password')
click('Cancel', roleName='push button')

# Try again with the correct password
focus.application('atril')
click('Unlock Document', roleName='push button')
focus.dialog('Enter password')
type('Foo')
click('Unlock Document', roleName='push button')

# Close atril
focus.application('atril')
click('File', roleName='menu')
click('Close', roleName='menu item')