mirror of
https://github.com/discourse/discourse.git
synced 2024-12-03 23:37:16 +08:00
16 lines
330 B
Ruby
16 lines
330 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module PageObjects
|
||
|
module Components
|
||
|
class Sidebar < PageObjects::Components::Base
|
||
|
def visible?
|
||
|
page.has_css?("#d-sidebar")
|
||
|
end
|
||
|
|
||
|
def has_category_section_link?(category)
|
||
|
page.has_link?(category.name, class: "sidebar-section-link")
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|