1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-12-12 06:13:08 +00:00
os-autoinst-distri-fedora/tests/applications/clocks/timer.pm
Adam Williamson a2ecf4bc0c F39 EOL cleanup: drop a bit from clocks/timer.pm
This was only needed on F39 and earlier, as the comment says.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
2024-11-28 13:45:01 -08:00

36 lines
868 B
Perl

use base "installedtest";
use strict;
use testapi;
use utils;
# I as a user want to be able to add, edit and remove timers.
sub run {
my $self = shift;
# Click on the Timer button.
assert_and_click("clocks_button_timer");
# Add a new alarm using the one minute button
assert_screen("clocks_timer_page");
assert_and_click("clocks_button_timer_minute");
sleep(10);
assert_and_click("clocks_button_timer_pause");
assert_screen("clocks_timer_paused");
assert_and_click("clocks_button_timer_start");
# Wait a minute if the timer goes off.
assert_screen("clocks_timer_finished", timeout => 60);
# Delete the timeout
assert_and_click("gnome_button_delete");
assert_screen("clocks_timer_page");
}
sub test_flags {
# Rollback after test is over.
return {always_rollback => 1};
}
1;
# vim: set sw=4 et: