mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-06 09:11:11 +08:00
12 lines
265 B
Ruby
12 lines
265 B
Ruby
# frozen_string_literal: true
|
|
|
|
module PageObjects
|
|
module Components
|
|
class TopicAdminMenu < Base
|
|
def click_set_topic_timer
|
|
find(".admin-topic-timer-update button").click
|
|
PageObjects::Modals::EditTopicTimer.new
|
|
end
|
|
end
|
|
end
|
|
end
|