Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

seahorse_sshkey.pm: fix poo#128903 #17005

Merged
merged 1 commit into from May 8, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 7 additions & 1 deletion tests/x11/seahorse_sshkey.pm
@@ -1,6 +1,6 @@
# SUSE's gnome-keyring tests
#
# Copyright 2017 SUSE LLC
# Copyright 2023 SUSE LLC
# SPDX-License-Identifier: FSFAP
#
# Package: seahorse
Expand All @@ -27,9 +27,15 @@ sub run {
send_key 'alt-d';
type_string "Keyring test"; # Name of new ssh key
send_key 'alt-j'; # Just Create ssh key without setup
if (check_screen("seahorse-sshkey-inhibit", timeout => 3)) {
assert_and_click "seahorse-sshkey-inhibit";
}
assert_screen 'seahorse-sshkey-passphrase'; # sshkey passphrase
type_password;
send_key 'ret';
if (check_screen("seahorse-sshkey-inhibit", timeout => 3)) {
assert_and_click "seahorse-sshkey-inhibit";
}
assert_screen 'seahorse-sshkey-passphrase-retype'; # sshkey passphrase retype
type_password;
send_key 'ret';
Expand Down