From 9f3b6e0650f3c99994a529625695e594a8c8043c Mon Sep 17 00:00:00 2001 From: Nickolay V. Shmyrev Date: Mon, 23 Oct 2006 22:12:25 +0000 Subject: Add automated UI tests for evince with dogtail. See bug #300948. 2006-10-24 Nickolay V. Shmyrev * configure.ac: * data/evince-password.glade: * test/Makefile.am: * test/test-encrypt.pdf: * test/test-links.pdf: * test/test1.py: * test/test2.py: Add automated UI tests for evince with dogtail. See bug #300948. --- (limited to 'test/test2.py') diff --git a/test/test2.py b/test/test2.py new file mode 100755 index 0000000..7e52c57 --- /dev/null +++ b/test/test2.py @@ -0,0 +1,22 @@ +#!/usr/bin/python + +from dogtail.procedural import * +from dogtail.utils import screenshot + +import os + +os.environ['LANG']='en_US.UTF-8' +os.system ('rm -rf ~/.gnome2/evince') + +run('evince',arguments=' ./test-encrypt.pdf',) +focus.dialog('Enter password') +focus.widget('Password Entry', roleName='password text') +type("wrong password") +click('OK', roleName='push button') +click('Cancel', roleName='push button') +click('Unlock Document', roleName='push button') +focus.widget('Password Entry', roleName='password text') +type("Foo") +click('OK', roleName='push button') +click('Close', roleName='menu item') + -- cgit v0.9.1