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

WIP #19985

Closed
wants to merge 1 commit into from
Closed

WIP #19985

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions tests/x11/firefox/firefox_passwd.pm
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,13 @@ sub run {

$self->firefox_preferences;
assert_and_click('firefox-passwd-security');
send_key_until_needlematch('firefox-primary-passwd-selected', 'alt-shift-u', 4, 1);
send_key 'spc' if $version < 128;
if (is_sle('<=15')) {
send_key_until_needlematch('firefox-primary-passwd-selected', 'alt-shift-u', 4, 1);
send_key 'spc' if $version < 128;
}
else {
send_key 'alt-shift-u';
}
assert_screen('firefox-passwd-master_setting');
# We should use strong password due to bsc#1208951
type_string $masterpw, 150;
Expand Down
Loading