Change Settings test due to change functionality.
@ -1,15 +0,0 @@
|
||||
{
|
||||
"properties": [],
|
||||
"tags": [
|
||||
"apps_settings_black_select"
|
||||
],
|
||||
"area": [
|
||||
{
|
||||
"xpos": 863,
|
||||
"ypos": 149,
|
||||
"width": 50,
|
||||
"height": 23,
|
||||
"type": "match"
|
||||
}
|
||||
]
|
||||
}
|
Before Width: | Height: | Size: 141 KiB |
@ -1,15 +0,0 @@
|
||||
{
|
||||
"properties": [],
|
||||
"tags": [
|
||||
"apps_settings_black_visible"
|
||||
],
|
||||
"area": [
|
||||
{
|
||||
"xpos": 716,
|
||||
"ypos": 462,
|
||||
"width": 142,
|
||||
"height": 86,
|
||||
"type": "match"
|
||||
}
|
||||
]
|
||||
}
|
Before Width: | Height: | Size: 145 KiB |
@ -1,15 +0,0 @@
|
||||
{
|
||||
"area": [
|
||||
{
|
||||
"height": 27,
|
||||
"xpos": 285,
|
||||
"ypos": 481,
|
||||
"type": "match",
|
||||
"width": 90
|
||||
}
|
||||
],
|
||||
"properties": [],
|
||||
"tags": [
|
||||
"apps_settings_choose_background"
|
||||
]
|
||||
}
|
Before Width: | Height: | Size: 75 KiB |
@ -1,15 +0,0 @@
|
||||
{
|
||||
"properties": [],
|
||||
"tags": [
|
||||
"apps_settings_choose_background"
|
||||
],
|
||||
"area": [
|
||||
{
|
||||
"xpos": 419,
|
||||
"ypos": 455,
|
||||
"width": 105,
|
||||
"height": 27,
|
||||
"type": "match"
|
||||
}
|
||||
]
|
||||
}
|
Before Width: | Height: | Size: 176 KiB |
@ -1,15 +0,0 @@
|
||||
{
|
||||
"area": [
|
||||
{
|
||||
"xpos": 610,
|
||||
"type": "match",
|
||||
"ypos": 158,
|
||||
"height": 21,
|
||||
"width": 47
|
||||
}
|
||||
],
|
||||
"properties": [],
|
||||
"tags": [
|
||||
"apps_settings_choose_color"
|
||||
]
|
||||
}
|
Before Width: | Height: | Size: 423 KiB |
@ -1,15 +0,0 @@
|
||||
{
|
||||
"properties": [],
|
||||
"tags": [
|
||||
"apps_settings_choose_color"
|
||||
],
|
||||
"area": [
|
||||
{
|
||||
"xpos": 616,
|
||||
"ypos": 149,
|
||||
"width": 47,
|
||||
"height": 21,
|
||||
"type": "match"
|
||||
}
|
||||
]
|
||||
}
|
Before Width: | Height: | Size: 465 KiB |
@ -1,16 +0,0 @@
|
||||
{
|
||||
"properties": [],
|
||||
"tags": [
|
||||
"apps_settings_screen_black",
|
||||
"workspace"
|
||||
],
|
||||
"area": [
|
||||
{
|
||||
"xpos": 382,
|
||||
"ypos": 280,
|
||||
"width": 238,
|
||||
"height": 171,
|
||||
"type": "match"
|
||||
}
|
||||
]
|
||||
}
|
Before Width: | Height: | Size: 134 KiB |
@ -3,13 +3,8 @@ use strict;
|
||||
use testapi;
|
||||
use utils;
|
||||
|
||||
# This test tests that Settings starts and the it can be used to
|
||||
# change the desktop settings.
|
||||
# This test was originally used to set the virtual machine desktop
|
||||
# to black to support other tests. This functionality has been taken
|
||||
# by the Terminal test.
|
||||
# You can put this test anywhere in the suite without any problems.
|
||||
|
||||
# This test tests that Settings starts
|
||||
#
|
||||
sub run {
|
||||
my $self = shift;
|
||||
# start the settings application
|
||||
@ -20,25 +15,6 @@ sub run {
|
||||
# select Background menu item
|
||||
assert_and_click 'apps_settings_menu_background';
|
||||
wait_still_screen 5;
|
||||
assert_and_click 'apps_settings_choose_background';
|
||||
wait_still_screen 5;
|
||||
|
||||
# select the Background color menu and move down until black is found, then click it.
|
||||
assert_and_click 'apps_settings_choose_color';
|
||||
wait_still_screen 5;
|
||||
my $black_visible = 0;
|
||||
while ($black_visible == 0) {
|
||||
send_key 'down';
|
||||
if (check_screen('apps_settings_black_visible', 1)) {
|
||||
$black_visible = 1;
|
||||
}
|
||||
}
|
||||
assert_and_click 'apps_settings_black_visible';
|
||||
wait_still_screen 5;
|
||||
|
||||
# confirm the selection
|
||||
assert_and_click 'apps_settings_black_select';
|
||||
wait_still_screen 5;
|
||||
|
||||
# close the application
|
||||
send_key 'alt-f4';
|
||||
|