mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 20:54:31 +08:00
7688628993
Fixes broken behaviour of arrow buttons for certain users as the interval to scroll menu can be cancelled before the scrolling actually happens. Co-authored-by: Joffrey JAFFEUX <j.jaffeux@gmail.com>
49 lines
1.3 KiB
Ruby
49 lines
1.3 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module PageObjects
|
|
module Pages
|
|
class UserPreferences < PageObjects::Pages::Base
|
|
def visit(user)
|
|
page.visit("/u/#{user.username}/preferences")
|
|
self
|
|
end
|
|
|
|
def click_secondary_navigation_menu_scroll_right
|
|
find(".horizontal-overflow-nav__scroll-right").click
|
|
end
|
|
|
|
def click_secondary_navigation_menu_scroll_left
|
|
find(".horizontal-overflow-nav__scroll-left").click
|
|
end
|
|
|
|
INTERFACE_LINK_CSS_SELECTOR = ".nav-tracking"
|
|
|
|
def has_interface_link_visible?
|
|
horizontal_secondary_link_visible?(INTERFACE_LINK_CSS_SELECTOR, visible: true)
|
|
end
|
|
|
|
def has_interface_link_not_visible?
|
|
horizontal_secondary_link_visible?(INTERFACE_LINK_CSS_SELECTOR, visible: false)
|
|
end
|
|
|
|
ACCOUNT_LINK_CSS_SELECTOR = ".nav-account"
|
|
|
|
def has_account_link_visible?
|
|
horizontal_secondary_link_visible?(ACCOUNT_LINK_CSS_SELECTOR, visible: true)
|
|
end
|
|
|
|
def has_account_link_not_visible?
|
|
horizontal_secondary_link_visible?(ACCOUNT_LINK_CSS_SELECTOR, visible: false)
|
|
end
|
|
|
|
private
|
|
|
|
def horizontal_secondary_link_visible?(selector, visible: true)
|
|
within(".user-navigation-secondary") do
|
|
page.has_selector?(selector, visible: visible)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|