2019-11-05 20:13:33 +00:00
|
|
|
use base "installedtest";
|
|
|
|
use strict;
|
|
|
|
use testapi;
|
|
|
|
use utils;
|
|
|
|
|
|
|
|
sub run {
|
|
|
|
menu_launch_type('boxes');
|
2020-04-27 19:04:00 +00:00
|
|
|
assert_screen ['apps_boxes_tutorial', 'boxes_new_connection'];
|
|
|
|
if (match_has_tag 'apps_boxes_tutorial') {
|
|
|
|
# Let us get rid of the Tutorial window.
|
|
|
|
send_key 'esc';
|
|
|
|
}
|
2019-11-05 20:13:33 +00:00
|
|
|
assert_and_click('boxes_new_connection');
|
|
|
|
assert_and_click('boxes_remote');
|
2020-07-17 20:42:48 +00:00
|
|
|
type_very_safely("vnc://172.16.2.114:5901\n");
|
2019-11-05 20:13:33 +00:00
|
|
|
assert_and_click('boxes_allow_inhibit');
|
|
|
|
assert_and_click('boxes_fullscreen');
|
|
|
|
}
|
|
|
|
|
|
|
|
sub test_flags {
|
|
|
|
return { fatal => 1 };
|
|
|
|
}
|
|
|
|
|
|
|
|
1;
|
|
|
|
|
|
|
|
# vim: set sw=4 et:
|