1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2025-06-24 07:21:43 +00:00
os-autoinst-distri-fedora/tests/applications/sysmon/aaa_setup.pm
Lukas Ruzicka 1e6da7019c Unify the needles' naming scheme between Gnome and KDE.
Before this PR, we would have a different naming scheme
of application running needles for Gnome, a.k.a
apps_run_application, while for KDE we had application_runs.

This PR unifies all name under the Gnome scheme,
replaces the tags in the needles and test scripts.

This PR fixes https://pagure.io/fedora-qa/os-autoinst-distri-fedora/issue/330
2025-03-04 11:48:45 -08:00

31 lines
645 B
Perl

use base "installedtest";
use strict;
use testapi;
use utils;
# This script opens the System Monitor application and saves the milestone
# to make it ready for further testing.
sub run {
my $self = shift;
# Set the update notification timestamp
set_update_notification_timestamp();
# Start the Application
menu_launch_type("system monitor");
assert_screen("apps_run_systemmonitor");
# Make it fill the entire window.
send_key("super-up");
wait_still_screen(2);
}
sub test_flags {
# If this test fails, there is no need to continue.
return {fatal => 1, milestone => 1};
}
1;
# vim: set sw=4 et: