2021-07-14 16:04:16 +00:00
|
|
|
use base "installedtest";
|
|
|
|
use strict;
|
|
|
|
use testapi;
|
|
|
|
use utils;
|
|
|
|
|
|
|
|
# This part of the suite tests if About works.
|
|
|
|
|
|
|
|
sub run {
|
2022-07-28 20:32:57 +00:00
|
|
|
my $self = shift;
|
2021-07-14 16:04:16 +00:00
|
|
|
|
2022-07-28 20:32:57 +00:00
|
|
|
# Open the menu by clicking on the Burger icon
|
|
|
|
assert_and_click("gnome_burger_menu", button => "left", timeout => 30);
|
|
|
|
wait_still_screen 2;
|
2021-07-14 16:04:16 +00:00
|
|
|
|
2022-07-28 20:32:57 +00:00
|
|
|
# In the menu, select the About item.
|
|
|
|
assert_and_click("evince_menu_about", button => "left", timeout => 30);
|
2021-07-14 16:04:16 +00:00
|
|
|
|
2022-07-28 20:32:57 +00:00
|
|
|
# Check that the About section has been displayed.
|
|
|
|
assert_screen("evince_about_shown");
|
2021-07-14 16:04:16 +00:00
|
|
|
|
2022-07-28 20:32:57 +00:00
|
|
|
# Click on Credits button to see the second part of the dialogue.
|
2022-08-09 01:09:59 +00:00
|
|
|
assert_and_click("gnome_button_credits", button => "left", timeout => 30);
|
2021-07-14 16:04:16 +00:00
|
|
|
|
2022-07-28 20:32:57 +00:00
|
|
|
# Check that Credits are accessible and visible, too.
|
|
|
|
assert_screen("evince_credits_shown");
|
2021-07-14 16:04:16 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
sub test_flags {
|
|
|
|
# Rollback to the previous state to make space for other parts.
|
|
|
|
return {always_rollback => 1};
|
|
|
|
}
|
|
|
|
|
|
|
|
1;
|