2023-02-21 09:59:56 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module PageObjects
|
|
|
|
module Components
|
|
|
|
class SidebarHeaderDropdown < PageObjects::Components::Base
|
|
|
|
def click
|
|
|
|
page.find(".hamburger-dropdown").click
|
2023-03-10 12:54:57 +08:00
|
|
|
wait_for_animation(find(".menu-panel"), timeout: 5)
|
2023-02-23 15:01:39 +08:00
|
|
|
self
|
2023-02-21 09:59:56 +08:00
|
|
|
end
|
|
|
|
|
2023-02-23 15:01:39 +08:00
|
|
|
SIDEBAR_HAMBURGER_DROPDOWN = ".sidebar-hamburger-dropdown"
|
|
|
|
|
2023-02-21 09:59:56 +08:00
|
|
|
def visible?
|
2023-02-23 15:01:39 +08:00
|
|
|
page.has_css?(SIDEBAR_HAMBURGER_DROPDOWN)
|
|
|
|
end
|
|
|
|
|
|
|
|
def hidden?
|
|
|
|
page.has_no_css?(SIDEBAR_HAMBURGER_DROPDOWN)
|
|
|
|
end
|
|
|
|
|
|
|
|
def has_no_keyboard_shortcuts_button?
|
|
|
|
page.has_no_css?(".sidebar-footer-actions-keyboard-shortcuts")
|
|
|
|
end
|
|
|
|
|
|
|
|
def click_community_header_button
|
|
|
|
page.click_button(
|
|
|
|
I18n.t("js.sidebar.sections.community.header_action_title"),
|
|
|
|
class: "sidebar-section-header-button",
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def click_everything_link
|
|
|
|
page.click_link(
|
|
|
|
I18n.t("js.sidebar.sections.community.links.everything.content"),
|
|
|
|
class: "sidebar-section-link-everything",
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def click_toggle_to_desktop_view_button
|
|
|
|
page.click_button(
|
|
|
|
I18n.t("js.desktop_view"),
|
|
|
|
class: "sidebar-footer-actions-toggle-mobile-view",
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def click_outside
|
|
|
|
dropdown = page.find(SIDEBAR_HAMBURGER_DROPDOWN)
|
|
|
|
dropdown.click(x: dropdown.rect.width + 1, y: 1)
|
2023-02-21 09:59:56 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|