summaryrefslogtreecommitdiffstats
path: root/qa/t/lib/QA/Util.pm
diff options
context:
space:
mode:
authorKohei Yoshino <kohei.yoshino@gmail.com>2018-01-08 15:55:43 +0100
committerDylan William Hardison <dylan@hardison.net>2018-01-08 15:55:43 +0100
commit9b3834764b26d0a806b72fdc3657075b7ab9c7c0 (patch)
tree2ed56c99d842b9ec52951723b0515af83edadbbf /qa/t/lib/QA/Util.pm
parentf86567c1f22f5d4dfa9bcc097efaef3ecb8b44bc (diff)
downloadbugzilla-9b3834764b26d0a806b72fdc3657075b7ab9c7c0.tar.gz
bugzilla-9b3834764b26d0a806b72fdc3657075b7ab9c7c0.tar.xz
Bug 1428642 - Fix minor bugs on new global header
* The magnifier icon on the search bar should not trigger search as reported in https://twitter.com/colinjoy/status/949035254949523457 * The search dropdown should show Saved Searches Edit link as suggested in my UX analysis * Remove the CSS transition on the More Tools button for consistency. I didn't add the transition; it's default style for buttons * Fix the position of the arrow/triangle on dropdown lists. An error of 1px. * Add `user-select: none;` to `#header` https://developer.mozilla.org/en-US/docs/Web/CSS/user select
Diffstat (limited to 'qa/t/lib/QA/Util.pm')
-rw-r--r--qa/t/lib/QA/Util.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/t/lib/QA/Util.pm b/qa/t/lib/QA/Util.pm
index f80837c0e..5d041d560 100644
--- a/qa/t/lib/QA/Util.pm
+++ b/qa/t/lib/QA/Util.pm
@@ -266,7 +266,7 @@ sub go_to_bug {
my ($sel, $bug_id) = @_;
$sel->type_ok("quicksearch_top", $bug_id);
- $sel->click_ok("find_top", undef, "Go to bug $bug_id");
+ $sel->submit("header-search");
$sel->wait_for_page_to_load_ok(WAIT_TIME);
my $bug_title = $sel->get_title();
utf8::encode($bug_title) if utf8::is_utf8($bug_title);