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

Check urlbar selected before typing in chromium #9580

Merged
merged 1 commit into from Feb 20, 2020
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
3 changes: 3 additions & 0 deletions tests/x11/chromium.pm
Expand Up @@ -30,15 +30,18 @@ sub run {
# Additional waiting to prevent unready address bar
# https://progress.opensuse.org/issues/36304
wait_still_screen(1);
assert_screen 'chromium-hightlighted-urlbar';
asdil12 marked this conversation as resolved.
Show resolved Hide resolved
type_string "chrome://version \n";
assert_screen 'chromium-about';

wait_screen_change { send_key 'ctrl-l' };
assert_screen 'chromium-hightlighted-urlbar';
type_string "https://html5test.opensuse.org\n";
assert_screen 'chromium-html-test', 90;

# check a site with different ssl configuration (boo#1144625)
wait_screen_change { send_key 'ctrl-l' };
assert_screen 'chromium-hightlighted-urlbar';
type_string("https://upload.wikimedia.org/wikipedia/commons/d/d0/OpenSUSE_Logo.svg\n");
assert_screen 'chromium-opensuse-logo', 90;
send_key 'alt-f4';
Expand Down