1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-11-21 21:43:08 +00:00

Add support for xfce launchers.

This commit is contained in:
Lukas Ruzicka 2019-03-14 10:16:07 +01:00
parent 333757eadc
commit 7d9b6bb765

View File

@ -734,6 +734,21 @@ sub start_with_launcher {
send_key 'ret';
wait_still_screen 5;
}
elsif ($desktop eq 'xfce') {
# Click on the XFCE menu applications
assert_and_click 'xfce_menu_launcher';
wait_still_screen 2;
# If the application icon is in a group, click on group first
if ($group) {
assert_and_click $group;
wait_still_screen 2;
}
# Click on the application icon
assert_and_click $launcher;
wait_still_screen 5;
}
}