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

input_helper.rb « helpers « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: acbb42274ec9443a8a19a1b90acba0ae11a32db1 (plain)
1
2
3
4
5
6
7
# see app/assets/javascripts/test_utils/simulate_input.js

module InputHelper
  def simulate_input(selector, input = '')
    evaluate_script("window.simulateInput(#{selector.to_json}, #{input.to_json});")
  end
end