summaryrefslogtreecommitdiff
path: root/spec/support/pages/gyms_page.rb
blob: fcb6d17f2364c3572012216098bc0f6de89a7ae4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require_relative "../page_model.rb"

class GymsPage < PageModel
  def initialize
    super gyms_path
  end

  def search(query)
    within "#search-form" do
      fill_in "q", with: query
      page.execute_script("$('form#search-form').submit()")
    end
  end
end