1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-09-13 19:57:21 +00:00
os-autoinst-distri-fedora/tests/applications/eog/pic_to_wallpaper.pm
2022-01-25 13:36:57 +01:00

37 lines
726 B
Perl

use base "installedtest";
use strict;
use testapi;
use utils;
# This part tests if the application can put an image as a wallpaper.
sub run {
my $self = shift;
sleep 2;
# Go to the menu
assert_and_click("gnome_burger_menu");
# Set as background
assert_and_click("eog_set_wallpaper");
wait_still_screen(3);
# Check that the dialogue has appeared
assert_screen("eog_wallpaper_set_window");
# Confirm
send_key("tab");
send_key("ret");
# Close the application
send_key("ctrl-q");
wait_still_screen(3);
# Check that the wallpaper was set
assert_screen("eog_image_background");
}
sub test_flags {
return {always_rollback => 1};
}
1;
# vim: set sw=4 et: