2022-01-25 13:45:38 +00:00
|
|
|
use base "installedtest";
|
|
|
|
use strict;
|
|
|
|
use testapi;
|
|
|
|
use utils;
|
|
|
|
|
|
|
|
# This part tests that Help can be shown.
|
|
|
|
|
|
|
|
sub run {
|
|
|
|
my $self = shift;
|
2023-06-29 11:30:41 +00:00
|
|
|
sleep(5);
|
|
|
|
# Click into the window to get focus
|
|
|
|
assert_and_click("gte_line_title");
|
2022-01-25 13:45:38 +00:00
|
|
|
# Open Help.
|
|
|
|
send_key("f1");
|
|
|
|
assert_screen "gte_help_shown";
|
|
|
|
|
|
|
|
# Navigate through several screens
|
|
|
|
assert_and_click "gte_help_files";
|
|
|
|
assert_screen "gte_help_open_file";
|
|
|
|
assert_and_click "gte_help_bread_main";
|
|
|
|
# Another screen
|
|
|
|
assert_and_click "gte_help_search";
|
|
|
|
assert_screen("gte_help_search_replace");
|
|
|
|
assert_and_click "gte_help_bread_main";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
sub test_flags {
|
2022-07-28 20:32:57 +00:00
|
|
|
return {always_rollback => 1};
|
2022-01-25 13:45:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
1;
|
|
|
|
|
|
|
|
# vim: set sw=4 et:
|