use base "installedtest"; use strict; use testapi; use utils; # This part of the suite tests that Evince can display the Help pages. sub run { my $self = shift; # Open Help. send_key("f1"); wait_still_screen 2; # Check that Help has been shown. assert_screen("okular_help_shown", timeout => 30); } sub test_flags { return {always_rollback => 1}; } 1;