mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-01 14:04:22 +00:00
28 lines
582 B
Perl
28 lines
582 B
Perl
|
use base "installedtest";
|
||
|
use strict;
|
||
|
use testapi;
|
||
|
use utils;
|
||
|
|
||
|
sub run {
|
||
|
|
||
|
# Open the Menu and click on Help entry.
|
||
|
assert_and_click("gnome_burger_menu");
|
||
|
assert_and_click("sysmon_menu_help");
|
||
|
|
||
|
# Check that Shortcuts dialogue is shown.
|
||
|
assert_screen("sysmon_help_shown");
|
||
|
|
||
|
assert_and_click("sysmon_help_processor");
|
||
|
assert_and_click("sysmon_help_monitoring");
|
||
|
assert_and_click("sysmon_help_use_maps");
|
||
|
assert_and_click("sysmon_help_swap");
|
||
|
assert_screen("sysmon_help_swap_shown");
|
||
|
}
|
||
|
|
||
|
sub test_flags {
|
||
|
return {always_rollback => 1};
|
||
|
}
|
||
|
|
||
|
1;
|
||
|
|