diff options
author | Wu Xiaotian <[email protected]> | 2019-06-23 22:20:50 +0800 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-07-01 16:22:46 +0200 |
commit | cb4293fe6cb01c7ffcb890a22e91ed0702d2656f (patch) | |
tree | 9b1482e969046b3d82b6d074a334d530ae32e6e6 /test/test4.py | |
parent | 449f6af7514251c7dda6fdf4ad2d1c6e37d42835 (diff) | |
download | atril-cb4293fe6cb01c7ffcb890a22e91ed0702d2656f.tar.bz2 atril-cb4293fe6cb01c7ffcb890a22e91ed0702d2656f.tar.xz |
migrate to python3 for test cases
Diffstat (limited to 'test/test4.py')
-rwxr-xr-x | test/test4.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/test/test4.py b/test/test4.py index 75da32ef..9ac27286 100755 --- a/test/test4.py +++ b/test/test4.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python3 # This test tries document reload action. @@ -12,9 +12,11 @@ run('atril', 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') + focus.application('atril') + click('View', roleName='menu') + click('Reload', roleName='menu item') # Close atril +focus.application('atril') click('File', roleName='menu') click('Close', roleName='menu item') |