Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/test/test2.py
blob: 7e52c57e6548086eb250ee3157c56d7e554121e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/python

from dogtail.procedural import *
from dogtail.utils import screenshot

import os

os.environ['LANG']='en_US.UTF-8'
os.system ('rm -rf ~/.gnome2/evince')

run('evince',arguments=' ./test-encrypt.pdf',)
focus.dialog('Enter password')
focus.widget('Password Entry', roleName='password text')
type("wrong password")
click('OK', roleName='push button')
click('Cancel', roleName='push button')
click('Unlock Document', roleName='push button')
focus.widget('Password Entry', roleName='password text')
type("Foo")
click('OK', roleName='push button')
click('Close', roleName='menu item')