* Declare `ActionText::FixtureSet.attachment` to generate an
` ` element with
a valid `sgid` attribute.
```ruby
hello_world_review_content:
record: hello_world (Review)
name: content
body:
<%= ActionText::FixtureSet.attachment("messages", :hello_world) %> is great!
```
*Sean Doyle*
* Locate `fill_in_rich_text_area` by `` text
In addition to searching for `` elements with the appropriate
`aria-label` attribute, also support locating elements that match the
corresponding `` element's text.
*Sean Doyle*
* Be able to add a default value to `rich_text_area`.
```ruby
form.rich_text_area :content, value: "Hello world "
#=>
```
*Paulo Ancheta*
* Add method to confirm rich text content existence by adding `?` after rich
text attribute.
```ruby
message = Message.create!(body: "Funny times! ")
message.body? #=> true
```
*Kyohei Toyoda*
* The `fill_in_rich_text_area` system test helper locates a Trix editor
and fills it in with the given HTML.
```ruby
#
fill_in_rich_text_area "message_content", with: "Hello world! "
#
fill_in_rich_text_area "Your message here", with: "Hello world! "
#
fill_in_rich_text_area "Message content", with: "Hello world! "
#
#
fill_in_rich_text_area "message[content]", with: "Hello world! "
```
*George Claghorn*
Please check [6-0-stable](https://github.com/rails/rails/blob/6-0-stable/actiontext/CHANGELOG.md) for previous changes.