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
3853f5d8
Commit
3853f5d8
authored
Feb 05, 2018
by
Michael Kozono
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix wait condition
The `has_css?` line was always timing out false because `$(‘…’).val(url)` does not change the input’s value attribute.
parent
df176fe7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
show.rb
qa/qa/page/project/show.rb
+1
-2
No files found.
qa/qa/page/project/show.rb
View file @
3853f5d8
...
...
@@ -3,7 +3,6 @@ module QA
module
Project
class
Show
<
Page
::
Base
view
'app/views/shared/_clone_panel.html.haml'
do
element
:clone_holder
,
'.git-clone-holder'
element
:clone_dropdown
element
:clone_options_dropdown
,
'.clone-options-dropdown'
element
:project_repository_location
,
'text_field_tag :project_clone'
...
...
@@ -31,7 +30,7 @@ module QA
end
# Ensure git clone textbox was updated to http URI
page
.
has_css?
(
'.git-clone-holder input#project_clone[value*="http"]
'
)
repository_location
.
include?
(
'http
'
)
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