2022-12-13 22:50:44 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module PageObjects
|
|
|
|
module Pages
|
|
|
|
class Search < PageObjects::Pages::Base
|
|
|
|
def type_in_search(input)
|
|
|
|
find("input.full-page-search").send_keys(input)
|
|
|
|
self
|
|
|
|
end
|
|
|
|
|
2023-01-28 02:05:27 +08:00
|
|
|
def clear_search_input
|
|
|
|
find("input.full-page-search").set("")
|
|
|
|
self
|
|
|
|
end
|
|
|
|
|
2022-12-13 22:50:44 +08:00
|
|
|
def heading_text
|
|
|
|
find("h1.search-page-heading").text
|
|
|
|
end
|
|
|
|
|
|
|
|
def click_search_button
|
|
|
|
find(".search-cta").click
|
|
|
|
end
|
|
|
|
|
|
|
|
def click_home_logo
|
|
|
|
find(".d-header .logo-mobile").click
|
|
|
|
end
|
|
|
|
|
|
|
|
def click_search_icon
|
|
|
|
find(".d-header #search-button").click
|
|
|
|
end
|
|
|
|
|
2023-05-05 07:45:53 +08:00
|
|
|
SEARCH_RESULT_SELECTOR = ".search-results .fps-result"
|
|
|
|
|
2022-12-13 22:50:44 +08:00
|
|
|
def has_search_result?
|
2023-05-05 07:45:53 +08:00
|
|
|
page.has_selector?(SEARCH_RESULT_SELECTOR)
|
|
|
|
end
|
|
|
|
|
|
|
|
def has_no_search_result?
|
|
|
|
page.has_no_selector?(SEARCH_RESULT_SELECTOR)
|
2022-12-13 22:50:44 +08:00
|
|
|
end
|
|
|
|
|
2023-01-28 02:05:27 +08:00
|
|
|
def has_warning_message?
|
2023-01-31 04:47:44 +08:00
|
|
|
page.has_selector?(".search-results .warning")
|
2023-01-28 02:05:27 +08:00
|
|
|
end
|
|
|
|
|
2023-05-05 07:45:53 +08:00
|
|
|
SEARCH_PAGE_SELECTOR = "body.search-page"
|
|
|
|
|
|
|
|
def active?
|
|
|
|
has_css?(SEARCH_PAGE_SELECTOR)
|
|
|
|
end
|
|
|
|
|
|
|
|
def not_active?
|
|
|
|
has_no_css?(SEARCH_PAGE_SELECTOR)
|
2022-12-13 22:50:44 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|