mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 21:55:44 +08:00
408de686bb
This change replaces the admin form for adding and editing custom user fields with a new FormKit implementation.
37 lines
923 B
Ruby
37 lines
923 B
Ruby
# frozen_string_literal: true
|
|
|
|
module PageObjects
|
|
module Pages
|
|
class AdminUserFields < PageObjects::Pages::Base
|
|
def visit
|
|
page.visit "admin/customize/user_fields"
|
|
self
|
|
end
|
|
|
|
def form
|
|
PageObjects::Components::FormKit.new(".user-field .form-kit")
|
|
end
|
|
|
|
def choose_requirement(requirement)
|
|
form = page.find(".user-field")
|
|
|
|
form.choose(I18n.t("admin_js.admin.user_fields.requirement.#{requirement}.title"))
|
|
end
|
|
|
|
def add_field(name: nil, description: nil, requirement: nil, preferences: [])
|
|
page.find(".user-fields .btn-primary").click
|
|
|
|
form = page.find(".user-field")
|
|
|
|
form.find(".user-field-name").fill_in(with: name)
|
|
form.find(".user-field-desc").fill_in(with: description)
|
|
form.find(".save").click
|
|
end
|
|
|
|
def has_user_field?(name)
|
|
page.has_text?(name)
|
|
end
|
|
end
|
|
end
|
|
end
|