Commit 65acf407 authored by Walmyr Lima e Silva Filho's avatar Walmyr Lima e Silva Filho

Merge branch...

Merge branch '11994-ee-spec-features-boards-group_boards-user_edits_issues_spec-rb-spec-failure-on-master' into 'master'

Fix flaky spec in `ee/spec/features/boards/group_boards/user_edits_issues_spec.rb`

Closes #11994

See merge request gitlab-org/gitlab!17660
parents 626aeb57 2d93b330
...@@ -30,8 +30,12 @@ describe 'label issues', :js do ...@@ -30,8 +30,12 @@ describe 'label issues', :js do
click_link 'Create group label' click_link 'Create group label'
fill_in 'new_label_name', with: 'test label' fill_in 'new_label_name', with: 'test label'
first('.suggest-colors-dropdown a').click first('.suggest-colors-dropdown a').click
click_button 'Create'
wait_for_requests # We need to hover before clicking to trigger
# dropdown repositioning so that the click isn't flaky
create_button = find_button('Create')
create_button.hover
create_button.click
end end
page.within '.labels' do page.within '.labels' do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment