use base "installedtest"; use strict; use testapi; use utils; # This script will start the Gnome Weather application and save # the image for all subsequent tests. sub run { my $self = shift; # Start the Application menu_launch_type("weather"); assert_screen ["apps_run_weather", "grant_access"]; # give access rights if asked if (match_has_tag 'grant_access') { click_lastmatch; assert_screen 'apps_run_weather'; } # Make it fill the entire window. send_key("super-up"); wait_still_screen(2); # Search for the city, different from the default one # as the default one can differ between zones. if (check_screen("weather_search_city")) { click_lastmatch; } type_very_safely("Brno"); assert_and_click("weather_select_city"); } sub test_flags { # If this test fails, there is no need to continue. return {fatal => 1, milestone => 1}; } 1; # vim: set sw=4 et: