1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2025-02-08 08:43:07 +00:00
os-autoinst-distri-fedora/tests/applications/bugreporter/about.pm
2022-09-19 16:11:42 +02:00

29 lines
619 B
Perl

use base "installedtest";
use strict;
use testapi;
use utils;
# This script tests if the About dialogue can be shown.
sub run {
my $self = shift;
# Open the About dialogue using the menu.
assert_and_click("gnome_burger_menu");
assert_and_click("bugreporter_menu_about");
assert_screen("bugreporter_about_shown");
assert_and_click("bugreporter_button_credits");
assert_screen("bugreporter_credits_shown");
assert_and_click("bugreporter_button_license");
assert_screen("bugreporter_license_shown");
}
sub test_flags {
return {always_rollback => 1};
}
1;
# vim: set sw=4 et: