1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-12-18 08:33:08 +00:00

Compare commits

...

3 Commits

Author SHA1 Message Date
Adam Williamson
62ec56636b work around rhbz #2329581 (installer boot hang till key pressed)
Signed-off-by: Adam Williamson <awilliam@redhat.com>
2024-12-02 08:52:20 -08:00
Adam Williamson
1eb603e63d Update various needles for anaconda-webui-19
Think they updated the web framework and tweaked UI a bit.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
2024-12-02 08:34:15 -08:00
Adam Williamson
c255a91f33 Drop skip_button needle
It was only used by a bit of gnome-initial-setup handling that
was removed as we no longer use it since F39 went EOL.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
2024-12-02 07:39:50 -08:00
17 changed files with 108 additions and 33 deletions

View File

@ -0,0 +1,15 @@
{
"area": [
{
"width": 178,
"height": 27,
"ypos": 139,
"type": "match",
"xpos": 55
}
],
"properties": [],
"tags": [
"version_42_ident"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 96 KiB

View File

@ -0,0 +1,15 @@
{
"area": [
{
"xpos": 270,
"ypos": 421,
"type": "match",
"width": 50,
"height": 17
}
],
"properties": [],
"tags": [
"anaconda_webui_select"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

View File

@ -0,0 +1,24 @@
{
"area": [
{
"width": 58,
"height": 58,
"xpos": 483,
"type": "match",
"ypos": 232
},
{
"height": 17,
"width": 31,
"type": "match",
"ypos": 425,
"xpos": 442
}
],
"properties": [],
"tags": [
"anaconda_install_done",
"ENV-DISTRI-fedora",
"LANGUAGE-english"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 109 KiB

View File

@ -0,0 +1,17 @@
{
"area": [
{
"xpos": 364,
"ypos": 726,
"type": "match",
"height": 17,
"width": 154
}
],
"properties": [],
"tags": [
"ENV-DISTRI-fedora",
"LANGUAGE-english",
"anaconda_webui_begin_installation"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

View File

@ -0,0 +1,15 @@
{
"area": [
{
"type": "match",
"ypos": 333,
"xpos": 266,
"height": 24,
"width": 141
}
],
"properties": [],
"tags": [
"anaconda_webui_disk_select"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 126 KiB

View File

@ -0,0 +1,15 @@
{
"area": [
{
"height": 20,
"width": 40,
"xpos": 363,
"type": "match",
"ypos": 724
}
],
"properties": [],
"tags": [
"anaconda_webui_next"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB

View File

@ -1,16 +0,0 @@
{
"area": [
{
"width": 32,
"ypos": 46,
"height": 21,
"xpos": 970,
"type": "match"
}
],
"properties": [],
"tags": [
"skip_button",
"LANGUAGE-english"
]
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

View File

@ -1,16 +0,0 @@
{
"area": [
{
"xpos": 970,
"width": 32,
"type": "match",
"height": 21,
"ypos": 46
}
],
"properties": [],
"tags": [
"skip_button",
"LANGUAGE-english"
]
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 59 KiB

View File

@ -199,7 +199,13 @@ sub run {
} }
} }
# wait for anaconda to appear # wait for anaconda to appear
assert_screen ["anaconda_select_install_lang", "anaconda_webui_welcome"], 300; unless (check_screen ["anaconda_select_install_lang", "anaconda_webui_welcome"], 300) {
# may be hitting https://bugzilla.redhat.com/show_bug.cgi?id=2329581,
# try pressing a key
send_key "spc";
assert_screen ["anaconda_select_install_lang", "anaconda_webui_welcome"], 300;
record_soft_failure "boot hung until key pressed - #2329581";
}
# on webUI path we are done now, also set a var so later # on webUI path we are done now, also set a var so later
# tests know if we're on the webUI path # tests know if we're on the webUI path
if (match_has_tag "anaconda_webui_welcome") { if (match_has_tag "anaconda_webui_welcome") {