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

# Test printing

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

from dogtail.procedural import *

run('evince', arguments=' '+srcdir+'/test-page-labels.pdf')

#!/usr/bin/python
from dogtail.procedural import *

focus.application('evince')
focus.frame('test-page-labels.pdf')
click('File', roleName='menu')
click('Print...', roleName='menu item')
focus.dialog('Print')
click('Pages:', roleName='radio button')
keyCombo('Tab')
type('1')
click('Page Setup', roleName='page tab', raw=True)
click('All sheets')
click('Even sheets')
click('Print Preview', roleName='push button')
keyCombo('Return')
click('Cancel')

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