2022-12-16 18:25:31 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module PageObjects
|
|
|
|
module Components
|
|
|
|
class Composer < PageObjects::Components::Base
|
|
|
|
def open_composer_actions
|
|
|
|
find(".composer-action-title .btn").click
|
|
|
|
self
|
|
|
|
end
|
|
|
|
|
|
|
|
def fill_title(title)
|
|
|
|
find("#reply-control #reply-title").fill_in(with: title)
|
|
|
|
self
|
|
|
|
end
|
|
|
|
|
|
|
|
def fill_content(content)
|
2023-01-12 11:54:26 +08:00
|
|
|
composer_input.fill_in(with: content)
|
|
|
|
self
|
|
|
|
end
|
|
|
|
|
|
|
|
def type_content(content)
|
|
|
|
composer_input.send_keys(content)
|
2022-12-16 18:25:31 +08:00
|
|
|
self
|
|
|
|
end
|
|
|
|
|
2023-01-12 11:54:26 +08:00
|
|
|
def clear_content
|
|
|
|
fill_content("")
|
|
|
|
end
|
|
|
|
|
|
|
|
def has_content?(content)
|
|
|
|
composer_input.value == content
|
|
|
|
end
|
|
|
|
|
2022-12-16 18:25:31 +08:00
|
|
|
def select_action(action)
|
|
|
|
find(action(action)).click
|
|
|
|
self
|
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
|
|
|
find("#reply-control .btn-primary").click
|
|
|
|
end
|
|
|
|
|
|
|
|
def action(action_title)
|
|
|
|
".composer-action-title .select-kit-collection li[title='#{action_title}']"
|
|
|
|
end
|
|
|
|
|
|
|
|
def button_label
|
|
|
|
find("#reply-control .btn-primary .d-button-label")
|
|
|
|
end
|
2023-01-12 11:54:26 +08:00
|
|
|
|
|
|
|
def composer_input
|
|
|
|
find("#reply-control .d-editor .d-editor-input")
|
|
|
|
end
|
2022-12-16 18:25:31 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|