1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-12-22 02:13:08 +00:00

nautilus/move_file_into: be more defensive

This is to try and fix some issues on aarch64.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2022-07-15 11:28:15 -07:00
parent ef76c76024
commit f84792f819

View File

@ -17,8 +17,8 @@ sub run {
wait_still_screen(2);
# Click on Copy To
assert_and_click("nautilus_context_copy_to");
wait_still_screen(2);
wait_screen_change { assert_and_click("nautilus_context_copy_to"); };
wait_still_screen(5);
# Select a different location to place the file.
assert_and_click("nautilus_directory_downloads");
@ -31,10 +31,12 @@ sub run {
assert_and_click("nautilus_test_file", button => "right");
# Click on Move to
assert_and_click("nautilus_context_move_to");
wait_screen_change { assert_and_click("nautilus_context_move_to"); };
wait_still_screen(5);
# Select a new location for this file
assert_and_click("nautilus_directory_videos");
wait_still_screen(2);
# Click on Select to move the file into the new location.
assert_and_click("gnome_select_button");