mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-21 21:43:08 +00:00
Make sure the Esc key is pressed.
This commit is contained in:
parent
e7af83bdc9
commit
598f08b318
@ -234,7 +234,11 @@ sub run {
|
|||||||
# Try to log in with either account, intentionally entering the wrong password.
|
# Try to log in with either account, intentionally entering the wrong password.
|
||||||
login_user(user => "jack", password => "wrongpassword", checklogin => 0);
|
login_user(user => "jack", password => "wrongpassword", checklogin => 0);
|
||||||
# get back to the login screen if necessary (dismiss an error message)
|
# get back to the login screen if necessary (dismiss an error message)
|
||||||
send_key 'esc' unless (check_screen "login_jim");
|
my $counter = 5;
|
||||||
|
while (! check_screen("login_jim")) {
|
||||||
|
last if ($counter <= 0);
|
||||||
|
send_key("esc");
|
||||||
|
}
|
||||||
|
|
||||||
# Now, log into the system again using the correct password. This will
|
# Now, log into the system again using the correct password. This will
|
||||||
# only work if we were correctly denied login with the wrong password,
|
# only work if we were correctly denied login with the wrong password,
|
||||||
|
Loading…
Reference in New Issue
Block a user