1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2025-02-08 16:43:13 +00:00

Rename routine

This commit is contained in:
Lukas Ruzicka 2023-03-21 16:22:02 +01:00
parent 0216aaf4c4
commit 87e2648590
2 changed files with 6 additions and 6 deletions

View File

@ -19,7 +19,7 @@ sub run {
# Open the Create category. # Open the Create category.
assert_and_click("software_category_create"); assert_and_click("software_category_create");
assert_and_click("software_application_amarok"); assert_and_click("software_application_amarok");
check_application_details("amarok"); check_application_information("amarok");
# Come back to the main screen # Come back to the main screen
while (! check_screen("gnome_search_button")) { while (! check_screen("gnome_search_button")) {
assert_and_click("gnome_back_button"); assert_and_click("gnome_back_button");
@ -28,7 +28,7 @@ sub run {
# Open the Learn category. # Open the Learn category.
assert_and_click("software_category_learn"); assert_and_click("software_category_learn");
assert_and_click("software_application_octave"); assert_and_click("software_application_octave");
check_application_details("octave"); check_application_information("octave");
# Come back to the main screen # Come back to the main screen
while (! check_screen("gnome_search_button")) { while (! check_screen("gnome_search_button")) {
assert_and_click("gnome_back_button"); assert_and_click("gnome_back_button");
@ -37,7 +37,7 @@ sub run {
# Open the Play category. # Open the Play category.
assert_and_click("software_category_play"); assert_and_click("software_category_play");
assert_and_click("software_application_chess"); assert_and_click("software_application_chess");
check_application_details("chess"); check_application_information("chess");
} }
sub test_flags { sub test_flags {

View File

@ -15,19 +15,19 @@ sub run {
# Find KTurtle and check for its details, # Find KTurtle and check for its details,
# use a keyword. # use a keyword.
find_application("educational"); find_application("educational");
check_application_details("educational"); check_application_information("educational");
assert_and_click("gnome_back_button"); assert_and_click("gnome_back_button");
# Find IDLE3 and check for its details, # Find IDLE3 and check for its details,
# use a name. # use a name.
find_application("idle3"); find_application("idle3");
check_application_details("idle3"); check_application_information("idle3");
assert_and_click("gnome_back_button"); assert_and_click("gnome_back_button");
# Find Midori and check for its details # Find Midori and check for its details
# use a category. # use a category.
find_application("browser"); find_application("browser");
check_application_details("browser"); check_application_information("browser");
assert_and_click("gnome_back_button"); assert_and_click("gnome_back_button");
} }