Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
vidjil
vidjil
Commits
66f1d266
Commit
66f1d266
authored
Jul 16, 2015
by
Mikaël Salson
Browse files
vidjil_browser.rb: IDs can't be integers (we could convert it…)
parent
648857e4
Changes
1
Hide whitespace changes
Inline
Side-by-side
browser/test/vidjil_browser.rb
View file @
66f1d266
...
...
@@ -39,16 +39,19 @@ class VidjilBrowser < Watir::Browser
# Return the clone on the scatterplot
# Beware the id must be a string
def
clone_in_scatterplot
(
id
,
extra
=
{})
return
element
(
extra
.
merge
(
:id
=>
"circle"
+
id
))
end
# Return the clone in the graph
# Beware the id must be a string
def
clone_in_graph
(
id
,
extra
=
{})
return
element
(
extra
.
merge
(
:id
=>
"polyline"
+
id
))
end
# Return the item of clone id in segmenter (may not exist…)
# Beware the id must be a string
def
clone_in_segmenter
(
id
,
extra
=
{})
return
element
(
extra
.
merge
(
:id
=>
'seq'
+
id
))
end
...
...
Write
Preview
Supports
Markdown
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