use base "installedtest"; use strict; use testapi; use utils; # This part of the suite tests the ability to search string in the text. sub run { my $self = shift; # Send a key combo to invoke search send_key("ctrl-f"); # Type *pages*. type_very_safely("pages"); # Check that the typed text has been found. assert_screen("okular_search_found", timeout => 30); } sub test_flags { return {always_rollback => 1}; } 1;