1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-11-25 07:13:09 +00:00
os-autoinst-distri-fedora/tests/applications/okular/shortcuts.pm
2024-04-03 11:50:54 +02:00

26 lines
461 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
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;