X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=blobdiff_plain;f=test%2Ftest2.py;h=ca06b66b88029f317250e0b3c1e7383b3ea628da;hb=91a30f422e1e1be27bf85e076c2207cfc23c3e0b;hp=e42fca0f3ac7dddc0a943eef8a688cef656163b1;hpb=21dd925e74a1c0af20917915f674b1872556b08b;p=evince.git diff --git a/test/test2.py b/test/test2.py index e42fca0f..ca06b66b 100755 --- a/test/test2.py +++ b/test/test2.py @@ -3,24 +3,25 @@ # This test opens a password encrypted file and tries to unlock it. import os -os.environ['LANG']='en_US.UTF-8' +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')