1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-11-21 21:43:08 +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": [
{
"type": "match",
"width": 51,
"ypos": 162,
"height": 19,
"xpos": 486
}
],
"properties": [],
"tags": [
"apps_run_monitor",
"systemmonitor_runs"
]
}
{
"area": [
{
"xpos": 486,
"ypos": 162,
"width": 51,
"height": 19,
"type": "match"
}
],
"properties": [],
"tags": [
"apps_run_monitor"
]
}

View File

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

View File

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

View File

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

View File

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

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": [
{
"type": "match",
"xpos": 423,
"ypos": 5,
"height": 20,
"width": 182
}
],
"properties": [],
"tags": [
"systemmonitor_runs"
]
{
"area": [
{
"xpos": 423,
"ypos": 5,
"width": 182,
"height": 20,
"type": "match"
}
],
"properties": [],
"tags": [
"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();
# Start the Application
menu_launch_type("system monitor");
assert_screen("systemmonitor_runs");
assert_screen("apps_run_monitor");
# Make it fill the entire window.
send_key("super-up");

View File

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