discourse/spec/system/page_objects/modals/reject_reason_reviewable.rb
Kelv 44c84413fb
DEV: upgrade reject reason reviewable modal to glimmer component (#24073)
* DEV: add system test for rejecting user from review page
* DEV: upgrade reject-reason-reviewable modal to glimmer & DModal
2023-10-24 17:44:43 +08:00

26 lines
628 B
Ruby

# frozen_string_literal: true
module PageObjects
module Modals
class RejectReasonReviewable < PageObjects::Modals::Base
def modal
find(".reject-reason-reviewable-modal")
end
def select_send_rejection_email_checkbox
modal.find(".reject-reason-reviewable-modal__send_email--inline").check
end
def fill_in_rejection_reason(reason)
modal.find(".reject-reason-reviewable-modal__explain-reviewable textarea").fill_in(
with: reason,
)
end
def delete_user
modal.find(".modal-footer .btn.btn-danger").click
end
end
end
end