From d12ce95569e709885c2844fd1938ad11b9988393 Mon Sep 17 00:00:00 2001 From: Lukas Ruzicka Date: Mon, 7 Mar 2022 15:55:52 +0100 Subject: [PATCH] Add multitask. --- tests/applications/system-settings/multitask.pm | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/tests/applications/system-settings/multitask.pm b/tests/applications/system-settings/multitask.pm index cda77869..fbc79de8 100644 --- a/tests/applications/system-settings/multitask.pm +++ b/tests/applications/system-settings/multitask.pm @@ -13,12 +13,6 @@ sub run { # Set workspace to a fixed number assert_and_click("settings_multitask_fixed_workspaces"); - # Limit applications to only belong to a certain workspace. - assert_and_click("settings_multitask_tie_apps"); - - # Switch off the application - send_key("alt-f4"); - # Check that the number of workspace is fix send_key("super"); assert_screen("settings_multitask_workspaces_count"); @@ -37,8 +31,11 @@ sub run { send_key("ret"); assert_screen("apps_run_terminal"); - # Now check you only see the terminal there on Activity page - assert_screen("settings_multitask_app_tied_wspace"); + # Now check you can switch among all apps. + hold_key("alt"); + send_key("tab"); + assert_screen("settings_multitask_apps_to_switch"); + relese_key("alt");