Welcome to mirror list, hosted at ThFree Co, Russian Federation.

quick_actions_helpers.rb « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d2aaae7518f8c28d678ab17c2f383068c69aae27 (plain)
1
2
3
4
5
6
7
8
9
10
module QuickActionsHelpers
  def write_note(text)
    Sidekiq::Testing.fake! do
      page.within('.js-main-target-form') do
        fill_in 'note[note]', with: text
        find('.js-comment-submit-button').trigger('click')
      end
    end
  end
end