1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-11-22 05:53:09 +00:00

Rename the system monitor needles.

This commit is contained in:
Lukáš Růžička 2024-07-16 11:06:42 +02:00
parent 2915e3e0b3
commit a5be0341c6
11 changed files with 99 additions and 89 deletions

View File

@ -1,16 +1,15 @@
{ {
"area": [ "area": [
{ {
"type": "match", "xpos": 486,
"width": 51, "ypos": 162,
"ypos": 162, "width": 51,
"height": 19, "height": 19,
"xpos": 486 "type": "match"
} }
], ],
"properties": [], "properties": [],
"tags": [ "tags": [
"apps_run_monitor", "apps_run_monitor"
"systemmonitor_runs" ]
] }
}

View File

@ -1,16 +1,15 @@
{ {
"area": [ "area": [
{ {
"ypos": 162, "xpos": 486,
"type": "match", "ypos": 162,
"height": 19, "width": 51,
"xpos": 486, "height": 19,
"width": 51 "type": "match"
} }
], ],
"properties": [], "properties": [],
"tags": [ "tags": [
"apps_run_monitor", "apps_run_monitor"
"systemmonitor_runs" ]
] }
}

View File

@ -1,16 +1,15 @@
{ {
"area": [ "area": [
{ {
"xpos": 352, "xpos": 352,
"ypos": 123, "ypos": 123,
"type": "match", "width": 70,
"height": 19, "height": 19,
"width": 70 "type": "match"
} }
], ],
"properties": [], "properties": [],
"tags": [ "tags": [
"apps_run_monitor", "apps_run_monitor"
"systemmonitor_runs" ]
] }
}

View File

@ -10,7 +10,6 @@
], ],
"properties": [], "properties": [],
"tags": [ "tags": [
"apps_run_monitor", "apps_run_monitor"
"systemmonitor_runs"
] ]
} }

View File

@ -1,23 +1,22 @@
{ {
"area": [ "area": [
{ {
"xpos": 327, "xpos": 327,
"width": 101, "ypos": 124,
"ypos": 124, "width": 101,
"height": 19, "height": 19,
"type": "match" "type": "match"
}, },
{ {
"xpos": 468, "xpos": 468,
"ypos": 125, "ypos": 125,
"width": 90, "width": 90,
"height": 18, "height": 18,
"type": "match" "type": "match"
} }
], ],
"properties": [], "properties": [],
"tags": [ "tags": [
"apps_run_monitor", "apps_run_monitor"
"systemmonitor_runs" ]
]
} }

View File

@ -0,0 +1,15 @@
{
"area": [
{
"xpos": 195,
"ypos": 280,
"width": 140,
"height": 20,
"type": "match"
}
],
"properties": [],
"tags": [
"apps_run_monitor"
]
}

View File

Before

Width:  |  Height:  |  Size: 81 KiB

After

Width:  |  Height:  |  Size: 81 KiB

View File

@ -1,15 +1,15 @@
{ {
"area": [ "area": [
{ {
"type": "match", "xpos": 423,
"xpos": 423, "ypos": 5,
"ypos": 5, "width": 182,
"height": 20, "height": 20,
"width": 182 "type": "match"
} }
], ],
"properties": [], "properties": [],
"tags": [ "tags": [
"systemmonitor_runs" "apps_run_monitor"
] ]
} }

View File

Before

Width:  |  Height:  |  Size: 185 KiB

After

Width:  |  Height:  |  Size: 185 KiB

View File

@ -13,7 +13,7 @@ sub run {
set_update_notification_timestamp(); set_update_notification_timestamp();
# Start the Application # Start the Application
menu_launch_type("system monitor"); menu_launch_type("system monitor");
assert_screen("systemmonitor_runs"); assert_screen("apps_run_monitor");
# Make it fill the entire window. # Make it fill the entire window.
send_key("super-up"); send_key("super-up");

View File

@ -10,7 +10,7 @@ sub run {
# Start the application # Start the application
menu_launch_type 'system monitor'; menu_launch_type 'system monitor';
# Check that it is started # Check that it is started
assert_screen 'systemmonitor_runs', timeout => 60; assert_screen 'apps_run_monitor', timeout => 60;
# Close the application # Close the application
quit_with_shortcut(); quit_with_shortcut();
} }