mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2025-07-19 11:51:34 +00:00
There's now a header bar in fullscreen mode which appears until you move the mouse away from it, and screws up the needle match. Signed-off-by: Adam Williamson <awilliam@redhat.com>
31 lines
587 B
Perl
31 lines
587 B
Perl
use base "installedtest";
|
|
use strict;
|
|
use testapi;
|
|
use utils;
|
|
|
|
# This part tests if the application can be switched to full screen.
|
|
|
|
sub run {
|
|
my $self = shift;
|
|
|
|
# Toggle full screen
|
|
send_key("ctrl-shift-f");
|
|
wait_still_screen 2;
|
|
# move mouse to middle of screen to make header bar go away
|
|
mouse_set("500", "350");
|
|
assert_screen("gwen_fullscreen_on");
|
|
|
|
# Return to normal mode
|
|
send_key("ctrl-shift-f");
|
|
wait_still_screen 2;
|
|
assert_screen("gwen_image_default");
|
|
}
|
|
|
|
sub test_flags {
|
|
return {always_rollback => 1};
|
|
}
|
|
|
|
1;
|
|
|
|
# vim: set sw=4 et:
|