use base "installedtest"; use strict; use testapi; use utils; # This script checks that the About section can be displayed # in Software. sub run { my $self = shift; # Open the menu assert_and_click("gnome_burger_menu"); wait_still_screen(2); # Click on the About menu item. assert_and_click("software_menu_about"); # Check that About is shown. assert_screen("software_about"); # The About dialogue also has a Credits tab, click on that. assert_and_click("gnome_credits_button"); # Check that the Credits tab is displayed. assert_screen("software_credits"); } sub test_flags { # When finished, rollback to the last milestone. return {always_rollback => 1}; } 1; # vim: set sw=4 et: