debian-mirror-gitlab/spec/support/helpers/features/notes_helpers.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

57 lines
1.4 KiB
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2018-05-09 12:01:36 +05:30
# These helpers allow you to manipulate with notes.
#
# Usage:
# describe "..." do
# include Spec::Support::Helpers::Features::NotesHelpers
# ...
#
# add_note("Hello world!")
#
module Spec
module Support
module Helpers
module Features
module NotesHelpers
def add_note(text)
2018-11-08 19:23:39 +05:30
perform_enqueued_jobs do
2018-05-09 12:01:36 +05:30
page.within(".js-main-target-form") do
fill_in("note[note]", with: text)
find(".js-comment-submit-button").click
end
end
2021-03-11 19:13:27 +05:30
wait_for_requests
2018-05-09 12:01:36 +05:30
end
2018-11-20 20:47:30 +05:30
2019-10-12 21:52:04 +05:30
def edit_note(note_text_to_edit, new_note_text)
page.within('#notes-list li.note', text: note_text_to_edit) do
find('.js-note-edit').click
fill_in('note[note]', with: new_note_text)
find('.js-comment-button').click
end
2021-03-11 19:13:27 +05:30
wait_for_requests
2019-10-12 21:52:04 +05:30
end
2018-11-20 20:47:30 +05:30
def preview_note(text)
page.within('.js-main-target-form') do
2019-07-31 22:56:46 +05:30
filled_text = fill_in('note[note]', with: text)
2019-09-04 21:01:54 +05:30
# Wait for quick action prompt to load and then dismiss it with ESC
# because it may block the Preview button
wait_for_requests
filled_text.send_keys(:escape)
2019-07-31 22:56:46 +05:30
2018-11-20 20:47:30 +05:30
click_on('Preview')
2019-07-31 22:56:46 +05:30
yield if block_given?
2018-11-20 20:47:30 +05:30
end
end
2018-05-09 12:01:36 +05:30
end
end
end
end
end