Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-06-03 00:10:20 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-06-03 00:10:20 +0300
commitdf52f8c8af971b336f520e291da02e1ba6a1a9dd (patch)
tree41bb94e2d74f8c43e83abaf04f7e4e35cfd56251 /spec/support
parentf3c61892ecbcad3bfe57f06f197ae9e8996970db (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/support')
-rw-r--r--spec/support/helpers/search_helpers.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/support/helpers/search_helpers.rb b/spec/support/helpers/search_helpers.rb
index 75853371c0f..72673648b89 100644
--- a/spec/support/helpers/search_helpers.rb
+++ b/spec/support/helpers/search_helpers.rb
@@ -2,7 +2,7 @@
module SearchHelpers
def fill_in_search(text)
- page.within('.header-search-new') do
+ page.within('.header-search') do
find('#search').click
fill_in 'search', with: text
end
@@ -11,7 +11,7 @@ module SearchHelpers
end
def submit_search(query)
- page.within('.header-search, .search-page-form') do
+ page.within('.header-search-form, .search-page-form') do
field = find_field('search')
field.click
field.fill_in(with: query)