mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-04 23:24:21 +00:00
c697ca171d
A new app called snapshot (Camera, on the menus) has replaced cheese in F40 (but not F39). Adjust to that. We can simplify this when F39 is out. Signed-off-by: Adam Williamson <awilliam@redhat.com>
29 lines
660 B
Perl
29 lines
660 B
Perl
use base "installedtest";
|
|
use strict;
|
|
use testapi;
|
|
use utils;
|
|
|
|
sub run {
|
|
menu_launch_type('vinagre');
|
|
assert_and_click('vinagre_new_connection');
|
|
assert_and_click('vinagre_protocol');
|
|
assert_and_click('vinagre_protocol_vnc');
|
|
send_key('tab');
|
|
type_very_safely("172.16.2.114:5901\n");
|
|
# this panel likes to move around so make sure we really hit it
|
|
while (check_screen 'vinagre_enable_shortcuts') {
|
|
assert_and_click('vinagre_enable_shortcuts');
|
|
sleep 2;
|
|
}
|
|
assert_and_click('gnome_allow');
|
|
assert_and_click('vinagre_fullscreen');
|
|
}
|
|
|
|
sub test_flags {
|
|
return {fatal => 1};
|
|
}
|
|
|
|
1;
|
|
|
|
# vim: set sw=4 et:
|