7b04b63eeb
The user can create a new directory on a different branch than the source branch when the branch already exists.
16 lines
392 B
Ruby
16 lines
392 B
Ruby
module TargetBranchHelpers
|
|
def select_branch(name)
|
|
first('button.js-target-branch').click
|
|
wait_for_ajax
|
|
all('a[data-group="Branches"]').find do |el|
|
|
el.text == name
|
|
end.click
|
|
end
|
|
|
|
def create_new_branch(name)
|
|
first('button.js-target-branch').click
|
|
click_link 'Create new branch'
|
|
fill_in 'new_branch_name', with: name
|
|
click_button 'Create'
|
|
end
|
|
end
|