os-autoinst-distri-fedora/tests/applications/okular/shortcuts.pm

23 lines
357 B
Perl

use base "installedtest";
use strict;
use testapi;
use utils;
# This part of the suite tests that Evince displays shortcuts.
sub run {
my $self = shift;
# Open the menu
send_key("ctrl+alt+,");
# Check that Shortcuts has been shown
assert_screen("okular_shortcuts_shown");
}
sub test_flags {
return {always_rollback => 1};
}
1;