#209 Change the way the mountpoint textfield is reached.
Merged 3 years ago by adamwill. Opened 3 years ago by lruzicka.

@@ -5,12 +5,7 @@ 

  use utils;

  

  sub goto_mountpoint {

-     my $counter = 20;

-     while (!check_screen "anaconda_part_mountpoint_selected" and $counter > 0) {

-         send_key "tab";

-         $counter += 1;

-         sleep 1;

-     }

+     send_key_until_needlematch("anaconda_part_mountpoint_selected", "tab", 20);

  }

  

  sub run {

The review for btrfs_preserve_home test case has revealed,
that the way how to reach the mountpoint textfield in the Anaconda
partitioning differs between various tests. This PR makes it the
easiest way possible, as is defined by custom_with_swap test
case mentioned in the review.

Build succeeded.

Commit 089638b fixes this pull-request

Pull-Request has been merged by adamwill

3 years ago

Pull-Request has been merged by adamwill

3 years ago