mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-01 05:54:22 +00:00
5c03c435ca
We still have a 'apps_run_firefox_stop' needle tag which is for the same thing as 'firefox_close_tabs'. That's dumb. Get rid of it and only have the firefox_close_tabs tag and needles. Also clean up some old firefox_close_tabs needles that haven't matched for months and all the 'apps_run_firefox_stop' needles. Signed-off-by: Adam Williamson <awilliam@redhat.com>
39 lines
1.0 KiB
Perl
39 lines
1.0 KiB
Perl
use base "installedtest";
|
|
use strict;
|
|
use testapi;
|
|
use utils;
|
|
|
|
# This test checks whether Firefox starts when clicking the icon
|
|
# in the activity menu. It does not test any other functionality.
|
|
|
|
sub run {
|
|
my $self = shift;
|
|
# Start the application
|
|
start_with_launcher('apps_menu_firefox');
|
|
# check that the application is running; this needle is from
|
|
# needles/firefox, it already existed before the 'apps' tests
|
|
# were created
|
|
assert_screen 'firefox';
|
|
# Close the application, but since Firefox needs special handling
|
|
# we are not using the common routine, but deal with this individually instead
|
|
assert_and_click 'apps_stop';
|
|
wait_still_screen 2;
|
|
# deal with warning screen
|
|
if (check_screen("firefox_close_tabs", 1)) {
|
|
click_lastmatch;
|
|
}
|
|
wait_still_screen 2;
|
|
# Register application
|
|
register_application("firefox");
|
|
# check that the application has stopped
|
|
assert_screen 'workspace';
|
|
}
|
|
|
|
sub test_flags {
|
|
return {always_rollback => 1};
|
|
}
|
|
|
|
1;
|
|
|
|
# vim: set sw=4 et:
|