Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
vidjil
vidjil
Commits
7a13de8b
Commit
7a13de8b
authored
Mar 05, 2019
by
Mikaël Salson
Browse files
vidjil_browser.rb: Add optional parameter to refine the filtering
parent
a4abacf8
Changes
1
Hide whitespace changes
Inline
Side-by-side
browser/test/functional/vidjil_browser.rb
View file @
7a13de8b
...
...
@@ -164,18 +164,18 @@ class VidjilBrowser < Watir::Browser
return
div
(
:id
=>
'settings_menu'
)
end
def
menu_item_export
(
id
)
def
menu_item_export
(
id
,
extra
=
{}
)
menu
=
menu_import_export
menu
.
click
return
menu
.
a
(
:id
=>
id
)
return
menu
.
a
(
extra
.
merge
(
:id
=>
id
)
)
end
def
menu_item_export_fasta
return
menu_item_export
(
'export_fasta'
)
def
menu_item_export_fasta
(
extra
=
{})
return
menu_item_export
(
'export_fasta'
,
extra
)
end
def
menu_item_export_fasta_align
return
menu_item_export
(
'export_fasta_align'
)
def
menu_item_export_fasta_align
(
extra
=
{})
return
menu_item_export
(
'export_fasta_align'
,
extra
)
end
def
merge
...
...
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