24 lines
586 B
Ruby
24 lines
586 B
Ruby
# frozen_string_literal: true
|
|
|
|
module PageObjects
|
|
module Pages
|
|
class AdminAboutConfigArea < PageObjects::Pages::Base
|
|
def visit
|
|
page.visit("/admin/config/about")
|
|
end
|
|
|
|
def general_settings_section
|
|
PageObjects::Components::AdminAboutConfigAreaGeneralSettingsCard.new
|
|
end
|
|
|
|
def contact_information_section
|
|
PageObjects::Components::AdminAboutConfigAreaContactInformationCard.new
|
|
end
|
|
|
|
def your_organization_section
|
|
PageObjects::Components::AdminAboutConfigAreaYourOrganizationCard.new
|
|
end
|
|
end
|
|
end
|
|
end
|