X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=blobdiff_plain;ds=sidebyside;f=test%2Ftest2.py;h=ca06b66b88029f317250e0b3c1e7383b3ea628da;hb=e2796d0d1a833e63c9495193c9241bd718f68082;hp=d85ba8b8fe0ab2ff0a09b3cebc9443b65fe816e3;hpb=d4ab67ff12720f2768b54227960640bc83ba9a77;p=evince.git diff --git a/test/test2.py b/test/test2.py index d85ba8b8..ca06b66b 100755 --- a/test/test2.py +++ b/test/test2.py @@ -4,23 +4,24 @@ import os os.environ['LANG']='C' +srcdir = os.environ['srcdir'] from dogtail.procedural import * -run('evince', arguments=' ./test-encrypt.pdf',) +run('evince', arguments=' '+srcdir+'/test-encrypt.pdf') # Try an incorrect password first focus.dialog('Enter password') focus.widget('Password Entry', roleName='password text') type('wrong password') -click('OK', roleName='push button') +click('Unlock Document', roleName='push button') click('Cancel', roleName='push button') # Try again with the correct password click('Unlock Document', roleName='push button') focus.widget('Password Entry', roleName='password text') type('Foo') -click('OK', roleName='push button') +click('Unlock Document', roleName='push button') # Close evince click('File', roleName='menu')