File: test4.py

package info (click to toggle)
evince 2.30.3-2%2Bsqueeze1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 16,920 kB
  • ctags: 9,448
  • sloc: ansic: 63,753; xml: 14,374; sh: 10,321; cpp: 2,424; makefile: 1,714; python: 110
file content (20 lines) | stat: -rwxr-xr-x 421 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/python

# This test tries document reload action.

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

from dogtail.procedural import *

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

# Reload document a few times
for i in range(1,6):
	click('View', roleName='menu')
	click('Reload', roleName='menu item')

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