2021-08-10 11:50:19 +00:00
|
|
|
use base "installedtest";
|
|
|
|
use strict;
|
|
|
|
use testapi;
|
|
|
|
use utils;
|
|
|
|
|
|
|
|
# This part tests if the application can navigate through the current folder.
|
|
|
|
|
|
|
|
sub run {
|
|
|
|
my $self = shift;
|
2022-07-28 20:32:57 +00:00
|
|
|
|
2021-08-10 11:50:19 +00:00
|
|
|
# Go to next picture.
|
|
|
|
send_key("right");
|
2022-01-25 10:21:04 +00:00
|
|
|
wait_still_screen(2);
|
2021-08-10 11:50:19 +00:00
|
|
|
assert_screen("eog_image_next");
|
|
|
|
# Go to previous picture
|
|
|
|
send_key("left");
|
2022-01-25 10:21:04 +00:00
|
|
|
wait_still_screen;
|
2021-08-10 11:50:19 +00:00
|
|
|
assert_and_click("eog_image_default");
|
|
|
|
}
|
|
|
|
|
|
|
|
sub test_flags {
|
|
|
|
return {always_rollback => 1};
|
|
|
|
}
|
|
|
|
|
|
|
|
1;
|
|
|
|
|
|
|
|
# vim: set sw=4 et:
|