mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-04 05:09:20 +08:00
15 lines
284 B
Ruby
15 lines
284 B
Ruby
# frozen_string_literal: true
|
|
|
|
module PageObjects
|
|
module Pages
|
|
class AdminLogo < PageObjects::Pages::Base
|
|
def visit
|
|
page.visit("/admin/config/logo")
|
|
end
|
|
|
|
def form
|
|
@form ||= PageObjects::Components::AdminLogoForm.new
|
|
end
|
|
end
|
|
end
|
|
end
|