mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-01 05:54:22 +00:00
38 lines
945 B
Perl
38 lines
945 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");
|
||
|
wait_still_screen(2);
|
||
|
assert_and_click("clocks_button_timer_start");
|
||
|
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:
|