2018-12-18 12:07:37 +00:00
|
|
|
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');
|
2019-03-26 19:23:45 +00:00
|
|
|
# check that the application is running; this needle is from
|
|
|
|
# needles/firefox, it already existed before the 'apps' tests
|
|
|
|
# were created
|
|
|
|
assert_screen 'firefox';
|
2018-12-18 12:07:37 +00:00
|
|
|
# Close the application, but since Firefox needs special handling
|
|
|
|
# we are not using the common routine, but deal with this individually instead
|
2019-03-28 09:54:56 +00:00
|
|
|
assert_and_click 'apps_stop';
|
|
|
|
wait_still_screen 2;
|
2018-12-18 12:07:37 +00:00
|
|
|
# deal with warning screen
|
2019-11-29 20:09:00 +00:00
|
|
|
if (check_screen("firefox_close_tabs", 1)) {
|
|
|
|
click_lastmatch;
|
2019-03-28 09:54:56 +00:00
|
|
|
}
|
2018-12-18 12:07:37 +00:00
|
|
|
wait_still_screen 2;
|
2019-09-19 14:03:50 +00:00
|
|
|
# Register application
|
|
|
|
register_application("firefox");
|
2018-12-18 12:07:37 +00:00
|
|
|
# check that the application has stopped
|
|
|
|
assert_screen 'workspace';
|
|
|
|
}
|
|
|
|
|
|
|
|
sub test_flags {
|
|
|
|
return {always_rollback => 1};
|
|
|
|
}
|
|
|
|
|
|
|
|
1;
|
|
|
|
|
|
|
|
# vim: set sw=4 et:
|