mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2025-07-16 10:21:37 +00:00
This test suite replaces the Evince test suite and adds altered scripts and needles to go with the Papers applications. At the same time, it provides the same level of functionality and testability as the original evince test. Fixes: https://pagure.io/fedora-qa/os-autoinst-distri-fedora/issue/377
28 lines
599 B
Perl
28 lines
599 B
Perl
use base "installedtest";
|
|
use strict;
|
|
use testapi;
|
|
use utils;
|
|
|
|
# This part of the suite tests that Evince can display the Help pages.
|
|
|
|
sub run {
|
|
my $self = shift;
|
|
|
|
# Open menu with Burger icon.
|
|
assert_and_click("gnome_burger_menu", button => "left", timeout => 30);
|
|
wait_still_screen 2;
|
|
|
|
# Select the Help item in the menu.
|
|
assert_and_click("papers_menu_help", button => "left", timeout => 30);
|
|
wait_still_screen 2;
|
|
|
|
# Check that Help has been shown.
|
|
assert_screen("papers_help_shown", timeout => 30);
|
|
}
|
|
|
|
sub test_flags {
|
|
return {always_rollback => 1};
|
|
}
|
|
|
|
1;
|