1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-09-30 01:37:21 +00:00
os-autoinst-distri-fedora/tests/apps_startstop/kde/kmail.pm
Adam Williamson fcac2af4f8 Update and rationalize KDE app "cancel" needles
We have three different needles which all match on a stock KDE
"cancel" button. Let's just have one. Also, update it for latest
Rawhide/F36 KDE.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
2022-02-25 12:22:47 -08:00

32 lines
549 B
Perl

use base "installedtest";
use strict;
use testapi;
use utils;
# This test checks that Kmail starts.
sub run {
my $self = shift;
# Start the application
menu_launch_type 'kmail';
# Cancel Kmail data wizard
assert_and_click 'kde_cancel_button';
if (check_screen("kde_cancel_button", 1)) {
click_lastmatch;
}
# Check that it is started
assert_screen 'kmail_runs';
# Close the application
quit_with_shortcut();
}
sub test_flags {
return {always_rollback => 1};
}
1;
# vim: set sw=4 et: