2018-12-18 12:07:37 +00:00
|
|
|
use base "installedtest";
|
|
|
|
use strict;
|
|
|
|
use testapi;
|
|
|
|
use utils;
|
|
|
|
|
2019-06-21 12:54:18 +00:00
|
|
|
# This test tests that Settings starts
|
|
|
|
#
|
2018-12-18 12:07:37 +00:00
|
|
|
sub run {
|
|
|
|
my $self = shift;
|
|
|
|
# start the settings application
|
|
|
|
send_key 'alt-f1';
|
2020-07-09 21:25:22 +00:00
|
|
|
workaround_ble26;
|
2018-12-18 12:07:37 +00:00
|
|
|
type_very_safely 'settings';
|
|
|
|
send_key 'ret';
|
|
|
|
|
|
|
|
# select Background menu item
|
|
|
|
assert_and_click 'apps_settings_menu_background';
|
|
|
|
wait_still_screen 5;
|
|
|
|
|
|
|
|
# close the application
|
|
|
|
send_key 'alt-f4';
|
|
|
|
wait_still_screen 5;
|
|
|
|
|
|
|
|
# check that the screen really is black
|
|
|
|
assert_screen 'workspace';
|
2019-09-19 14:03:50 +00:00
|
|
|
# Register application
|
|
|
|
register_application("gnome-control-center");
|
2018-12-18 12:07:37 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
sub test_flags {
|
|
|
|
return {always_rollback => 1};
|
|
|
|
}
|
|
|
|
|
|
|
|
1;
|
|
|
|
|
|
|
|
# vim: set sw=4 et:
|