mirror of
https://github.com/discourse/discourse.git
synced 2025-02-08 20:34:52 +00:00
12 lines
258 B
Ruby
12 lines
258 B
Ruby
# frozen_string_literal: true
|
|
|
|
module PageObjects
|
|
module Pages
|
|
class Sidebar < PageObjects::Pages::Base
|
|
def start_draft_dm
|
|
find(".sidebar-section-chat-dms .sidebar-section-header-button", visible: false).click
|
|
end
|
|
end
|
|
end
|
|
end
|