1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2025-02-25 16:44:31 +00:00

Compare commits

...

3 Commits

Author SHA1 Message Date
Lukas Ruzicka
3e7936fd01 Replace the dropped pactl with amixer to manipulate audio levels. 2023-07-17 14:30:05 +02:00
Lukas Ruzicka
c322924826 Add stormy needle for the Weather test. 2023-07-17 13:57:53 +02:00
Lukas Ruzicka
e807286805 Add a new walking route needle to make Maps pass. 2023-07-17 13:22:59 +02:00
5 changed files with 33 additions and 3 deletions

View File

@ -0,0 +1,15 @@
{
"area": [
{
"xpos": 292,
"width": 111,
"height": 385,
"type": "match",
"ypos": 228
}
],
"properties": [],
"tags": [
"maps_route_walk_shown"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 470 KiB

View File

@ -0,0 +1,15 @@
{
"area": [
{
"xpos": 25,
"type": "match",
"height": 86,
"width": 86,
"ypos": 104
}
],
"properties": [],
"tags": [
"weather_icon_current"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 123 KiB

View File

@ -27,17 +27,17 @@ sub run {
menu_launch_type("terminal");
assert_screen("apps_run_terminal");
# Set the volume to 0%
type_safely('pactl set-sink-volume @DEFAULT_SINK@ 0%');
type_safely('amixer -D pipewire sset Master 0%');
send_key('ret');
# Check that it worked
check_volume("zero");
# Set the volume to 50%
type_safely('pactl set-sink-volume @DEFAULT_SINK@ 50%');
type_safely('amixer -D pipewire sset Master 50%');
send_key('ret');
# Check that it worked
check_volume("fifty");
# Set the volume to 100%
type_safely('pactl set-sink-volume @DEFAULT_SINK@ 100%');
type_safely('amixer -D pipewire sset Master 100%');
send_key('ret');
# Check that it worked
check_volume("hundred");