1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-11-25 07:13:09 +00:00
os-autoinst-distri-fedora/tests/applications/okular/change_zoom.pm
2024-04-03 11:50:54 +02:00

30 lines
556 B
Perl

use base "installedtest";
use strict;
use testapi;
use utils;
# This part of the suite tests that Evince can change the zoom of the document.
sub run {
my $self = shift;
# Click on zoom menu and select the content.
assert_and_click("okular_change_zoom", button => "left", timeout => 30);
send_key("ctrl-a");
# Select 200%.
type_very_safely("200");
send_key("ret");
# Check that the document zoom was changed.
assert_screen("okular_document_zoom_200");
}
sub test_flags {
return {always_rollback => 1};
}
1;