2019-11-05 20:13:33 +00:00
|
|
|
use base "installedtest";
|
|
|
|
use strict;
|
|
|
|
use testapi;
|
|
|
|
use utils;
|
|
|
|
|
|
|
|
sub run {
|
2021-05-06 21:05:05 +00:00
|
|
|
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");
|
2021-05-07 16:47:35 +00:00
|
|
|
# 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;
|
|
|
|
}
|
2021-05-06 21:05:05 +00:00
|
|
|
assert_and_click('vinagre_allow_inhibit');
|
2021-05-07 16:47:35 +00:00
|
|
|
assert_and_click('vinagre_fullscreen');
|
2019-11-05 20:13:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sub test_flags {
|
|
|
|
return { fatal => 1 };
|
|
|
|
}
|
|
|
|
|
|
|
|
1;
|
|
|
|
|
|
|
|
# vim: set sw=4 et:
|