1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actiontext/test/system/system_test_helper_test.rb
Sean Doyle 614580270d Locate fill_in_rich_text_area by <label> text
This commit dovetails with [#38551] in its focus on improving the
ability to test calls to `rich_text_area` in accessibility-minded ways.

In addition to searching for `<trix-editor>` elements with the
appropriate [`aria-label`][aria-label] attribute, also support locating
elements that match the corresponding `<label>` element's text.

Now that [basecamp/trix#829][] has been merged and released, clicking on
`<label>` elements that reference `<trix-editor>` elements will move
focus into the `<trix-editor>` element.

There are still some accessible [label text][] improvements that could
be made, but extending `fill_in_rich_text_area` to account for `<label
for="...">` elements is a good start.

[#38551]: https://github.com/rails/rails/pull/38551
[aria-label]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/ARIA_Techniques/Using_the_aria-label_attribute
[basecamp/trix#829]: https://github.com/basecamp/trix/pull/829
[label text]: https://github.com/basecamp/trix/pull/829#issuecomment-699119852
2020-10-02 18:02:14 -04:00

46 lines
1.8 KiB
Ruby

# frozen_string_literal: true
require "application_system_test_case"
class ActionText::SystemTestHelperTest < ApplicationSystemTestCase
test "filling in a rich-text area by ID" do
visit new_message_url
assert_selector "trix-editor#message_content"
fill_in_rich_text_area "message_content", with: "Hello world!"
assert_selector :field, "message[content]", with: /Hello world!/, type: "hidden"
end
test "filling in a rich-text area by placeholder" do
visit new_message_url
assert_selector "trix-editor[placeholder='Your message here']"
fill_in_rich_text_area "Your message here", with: "Hello world!"
assert_selector :field, "message[content]", with: /Hello world!/, type: "hidden"
end
test "filling in a rich-text area by aria-label" do
visit new_message_url
assert_selector "trix-editor[aria-label='Message content aria-label']"
fill_in_rich_text_area "Message content aria-label", with: "Hello world!"
assert_selector :field, "message[content]", with: /Hello world!/, type: "hidden"
end
test "filling in a rich-text area by label" do
visit new_message_url
assert_selector "label", text: "Message content label"
fill_in_rich_text_area "Message content label", with: "Hello world!"
assert_selector :field, "message[content]", with: /Hello world!/, type: "hidden"
end
test "filling in a rich-text area by input name" do
visit new_message_url
assert_selector "trix-editor[input]"
fill_in_rich_text_area "message[content]", with: "Hello world!"
assert_selector :field, "message[content]", with: /Hello world!/, type: "hidden"
end
test "filling in the only rich-text area" do
visit new_message_url
fill_in_rich_text_area with: "Hello world!"
assert_selector :field, "message[content]", with: /Hello world!/, type: "hidden"
end
end