discourse/plugins/chat/spec/system/page_objects/sidebar/sidebar.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
258 B
Ruby
Raw Normal View History

# 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