discourse/spec/system/page_objects/pages/user_preferences.rb
Alan Guo Xiang Tan 7688628993
FIX: horizontal scrolling was not working correctly (#19236)
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>
2022-12-01 05:27:53 +08:00

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