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