2019-05-13 12:44:06 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module ActionText
|
|
|
|
module SystemTestHelper
|
|
|
|
# Locates a Trix editor and fills it in with the given HTML.
|
|
|
|
#
|
|
|
|
# The editor can be found by:
|
|
|
|
# * its +id+
|
|
|
|
# * its +placeholder+
|
2020-02-22 12:20:23 -05:00
|
|
|
# * the text from its +label+ element
|
2019-05-13 12:44:06 -04:00
|
|
|
# * its +aria-label+
|
|
|
|
# * the +name+ of its input
|
|
|
|
#
|
|
|
|
# Examples:
|
|
|
|
#
|
|
|
|
# # <trix-editor id="message_content" ...></trix-editor>
|
|
|
|
# fill_in_rich_text_area "message_content", with: "Hello <em>world!</em>"
|
|
|
|
#
|
|
|
|
# # <trix-editor placeholder="Your message here" ...></trix-editor>
|
|
|
|
# fill_in_rich_text_area "Your message here", with: "Hello <em>world!</em>"
|
|
|
|
#
|
2020-02-22 12:20:23 -05:00
|
|
|
# # <label for="message_content">Message content</label>
|
|
|
|
# # <trix-editor id="message_content" ...></trix-editor>
|
|
|
|
# fill_in_rich_text_area "Message content", with: "Hello <em>world!</em>"
|
|
|
|
#
|
2019-05-13 12:44:06 -04:00
|
|
|
# # <trix-editor aria-label="Message content" ...></trix-editor>
|
|
|
|
# fill_in_rich_text_area "Message content", with: "Hello <em>world!</em>"
|
|
|
|
#
|
|
|
|
# # <input id="trix_input_1" name="message[content]" type="hidden">
|
|
|
|
# # <trix-editor input="trix_input_1"></trix-editor>
|
|
|
|
# fill_in_rich_text_area "message[content]", with: "Hello <em>world!</em>"
|
2019-05-19 01:54:08 -04:00
|
|
|
def fill_in_rich_text_area(locator = nil, with:)
|
2019-05-19 01:47:29 -04:00
|
|
|
find(:rich_text_area, locator).execute_script("this.editor.loadHTML(arguments[0])", with.to_s)
|
2019-05-13 12:44:06 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
Capybara.add_selector :rich_text_area do
|
|
|
|
label "rich-text area"
|
|
|
|
xpath do |locator|
|
2019-05-19 01:54:08 -04:00
|
|
|
if locator.nil?
|
|
|
|
XPath.descendant(:"trix-editor")
|
|
|
|
else
|
|
|
|
input_located_by_name = XPath.anywhere(:input).where(XPath.attr(:name) == locator).attr(:id)
|
2020-02-22 12:20:23 -05:00
|
|
|
input_located_by_label = XPath.anywhere(:label).where(XPath.string.n.is(locator)).attr(:for)
|
2019-05-13 12:44:06 -04:00
|
|
|
|
2019-05-19 01:54:08 -04:00
|
|
|
XPath.descendant(:"trix-editor").where \
|
|
|
|
XPath.attr(:id).equals(locator) |
|
|
|
|
XPath.attr(:placeholder).equals(locator) |
|
|
|
|
XPath.attr(:"aria-label").equals(locator) |
|
2020-02-22 12:20:23 -05:00
|
|
|
XPath.attr(:input).equals(input_located_by_name) |
|
|
|
|
XPath.attr(:id).equals(input_located_by_label)
|
2019-05-19 01:54:08 -04:00
|
|
|
end
|
2019-05-13 12:44:06 -04:00
|
|
|
end
|
|
|
|
end
|