Compare commits
3 Commits
d4cb357db7
...
279ae24fc1
Author | SHA1 | Date | |
---|---|---|---|
|
279ae24fc1 | ||
|
2a157bbd4e | ||
|
2db1e57674 |
@ -0,0 +1,16 @@
|
||||
{
|
||||
"area": [
|
||||
{
|
||||
"xpos": 0,
|
||||
"width": 209,
|
||||
"height": 15,
|
||||
"type": "match",
|
||||
"ypos": 691
|
||||
}
|
||||
],
|
||||
"properties": [],
|
||||
"tags": [
|
||||
"boot_enter_passphrase",
|
||||
"ENV-DISTRI-fedora"
|
||||
]
|
||||
}
|
BIN
needles/console/boot_enter_passphrase-console-uefi-20230105.png
Normal file
After Width: | Height: | Size: 127 KiB |
@ -0,0 +1,16 @@
|
||||
{
|
||||
"area": [
|
||||
{
|
||||
"type": "match",
|
||||
"height": 11,
|
||||
"ypos": 709,
|
||||
"xpos": 0,
|
||||
"width": 209
|
||||
}
|
||||
],
|
||||
"properties": [],
|
||||
"tags": [
|
||||
"boot_enter_passphrase",
|
||||
"ENV-DISTRI-fedora"
|
||||
]
|
||||
}
|
BIN
needles/console/boot_enter_passphrase-console-uefi-20230109.png
Normal file
After Width: | Height: | Size: 126 KiB |
16
needles/gnome/gnome_software_ignore-20230109.json
Normal file
@ -0,0 +1,16 @@
|
||||
{
|
||||
"area": [
|
||||
{
|
||||
"xpos": 385,
|
||||
"ypos": 502,
|
||||
"width": 51,
|
||||
"height": 20,
|
||||
"type": "match"
|
||||
}
|
||||
],
|
||||
"properties": [],
|
||||
"tags": [
|
||||
"DESKTOP-gnome",
|
||||
"gnome_software_ignore"
|
||||
]
|
||||
}
|
BIN
needles/gnome/gnome_software_ignore-20230109.png
Normal file
After Width: | Height: | Size: 78 KiB |
@ -1,16 +0,0 @@
|
||||
{
|
||||
"area": [
|
||||
{
|
||||
"height": 15,
|
||||
"ypos": 561,
|
||||
"xpos": 458,
|
||||
"width": 111,
|
||||
"type": "match"
|
||||
}
|
||||
],
|
||||
"properties": [],
|
||||
"tags": [
|
||||
"DESKTOP-gnome",
|
||||
"gnome_software_welcome"
|
||||
]
|
||||
}
|
Before Width: | Height: | Size: 176 KiB |
@ -1,16 +0,0 @@
|
||||
{
|
||||
"area": [
|
||||
{
|
||||
"type": "match",
|
||||
"height": 15,
|
||||
"ypos": 533,
|
||||
"width": 116,
|
||||
"xpos": 454
|
||||
}
|
||||
],
|
||||
"properties": [],
|
||||
"tags": [
|
||||
"DESKTOP-gnome",
|
||||
"gnome_software_welcome"
|
||||
]
|
||||
}
|
Before Width: | Height: | Size: 64 KiB |
@ -1,16 +0,0 @@
|
||||
{
|
||||
"area": [
|
||||
{
|
||||
"width": 62,
|
||||
"type": "match",
|
||||
"height": 18,
|
||||
"ypos": 558,
|
||||
"xpos": 509
|
||||
}
|
||||
],
|
||||
"tags": [
|
||||
"DESKTOP-gnome",
|
||||
"gnome_software_welcome"
|
||||
],
|
||||
"properties": []
|
||||
}
|
Before Width: | Height: | Size: 112 KiB |
@ -1,16 +0,0 @@
|
||||
{
|
||||
"area": [
|
||||
{
|
||||
"height": 18,
|
||||
"width": 62,
|
||||
"type": "match",
|
||||
"ypos": 484,
|
||||
"xpos": 521
|
||||
}
|
||||
],
|
||||
"properties": [],
|
||||
"tags": [
|
||||
"DESKTOP-gnome",
|
||||
"gnome_software_welcome"
|
||||
]
|
||||
}
|
Before Width: | Height: | Size: 137 KiB |
@ -37,10 +37,12 @@ sub run {
|
||||
sleep 3;
|
||||
menu_launch_type('update');
|
||||
}
|
||||
# GNOME Software has a welcome screen, get rid of it if it shows
|
||||
# up (but don't fail if it doesn't, we're not testing that)
|
||||
if ($desktop eq 'gnome' && check_screen 'gnome_software_welcome', 10) {
|
||||
send_key 'ret';
|
||||
# GNOME Software 44+ has a 3rd party source pop-up, get rid of it
|
||||
# if it shows up (but don't fail if it doesn't, we're not testing that)
|
||||
if ($desktop eq 'gnome' && check_screen 'gnome_software_ignore', 10) {
|
||||
wait_still_screen 3;
|
||||
# match again as the dialog may have moved a bit
|
||||
assert_and_click 'gnome_software_ignore';
|
||||
}
|
||||
# go to the 'update' interface. We may be waiting some time at a
|
||||
# 'Software catalog is being loaded' screen.
|
||||
|