BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
6ece9792
Commit
6ece9792
authored
May 25, 2017
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'correct-compare_spec-transient' into 'master'
Fix transient error clicking dropdown items in compare_spec.rb See merge request !11582
parents
b2167397
d3655fe5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
compare_spec.rb
spec/features/projects/compare_spec.rb
+5
-1
No files found.
spec/features/projects/compare_spec.rb
View file @
6ece9792
...
...
@@ -52,8 +52,12 @@ describe "Compare", js: true do
def
select_using_dropdown
(
dropdown_type
,
selection
)
dropdown
=
find
(
".js-compare-
#{
dropdown_type
}
-dropdown"
)
dropdown
.
find
(
".compare-dropdown-toggle"
).
click
# find input before using to wait for the inputs visiblity
dropdown
.
find
(
'.dropdown-menu'
)
dropdown
.
fill_in
(
"Filter by Git revision"
,
with:
selection
)
wait_for_requests
dropdown
.
find_all
(
"a[data-ref=
\"
#{
selection
}
\"
]"
,
visible:
true
).
last
.
click
# find before all to wait for the items visiblity
dropdown
.
find
(
"a[data-ref=
\"
#{
selection
}
\"
]"
,
match: :first
)
dropdown
.
all
(
"a[data-ref=
\"
#{
selection
}
\"
]"
).
last
.
click
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment