1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-09-24 15:47:23 +00:00

solidify_wallpaper: handle KDE no longer having a handy 'black'

Plasma 6's color chooser seems to have dropped the nice "basic
colors", so choosing black got harder. Let's try using the HTML
color input box thingy instead, and typing #000000, the HTML
color code for black.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2023-11-29 10:58:51 -08:00
parent 0245b36cd4
commit 838d65f86c
5 changed files with 18 additions and 16 deletions

View File

@ -1507,7 +1507,9 @@ sub solidify_wallpaper {
assert_and_click "deskset_select_color";
wait_still_screen 2;
# Select black
assert_and_click "deskset_select_black";
assert_and_dclick "deskset_html_color";
wait_still_screen 2;
type_safely "000000";
wait_still_screen 2;
# Confirm
assert_and_click "kde_ok";

View File

@ -0,0 +1,15 @@
{
"area": [
{
"xpos": 583,
"ypos": 539,
"width": 88,
"height": 25,
"type": "match"
}
],
"properties": [],
"tags": [
"deskset_html_color"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 438 KiB

View File

@ -1,15 +0,0 @@
{
"properties": [],
"tags": [
"deskset_select_black"
],
"area": [
{
"xpos": 242,
"ypos": 144,
"width": 14,
"height": 11,
"type": "match"
}
]
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 368 KiB