1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-11-29 00:53:09 +00:00
os-autoinst-distri-fedora/tests/applications/okular/shortcuts.pm

26 lines
461 B
Perl
Raw Normal View History

2024-04-02 10:03:53 +00:00
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
assert_and_click("kde_mainmenu_settings");
# Choose the shortcuts submenu
assert_and_click("okular_submenu_shorcuts");
# Check that Shortcuts has been shown
assert_screen("okular_shortcuts_shown");
}
sub test_flags {
return {always_rollback => 1};
}
1;