rubocop / rubocop-capybara

Code style checking for Capybara files.
https://docs.rubocop.org/rubocop-capybara
MIT License
40 stars 8 forks source link

Fix an offense message for `Capybara/SpecificFinders` #32

Closed ydah closed 1 year ago

ydah commented 1 year ago

Resolve: https://github.com/rubocop/rubocop-capybara/issues/23#issuecomment-1481609845

This PR is fix an offense message for Capybara/SpecificFinders. Modify the message of the offense as follows:

      find('#some-id')
-      ^^^^^^^^^^^^^^^^ Prefer `find_by` over `find`.
+      ^^^^^^^^^^^^^^^^ Prefer `find_by_id` over `find`.

Before submitting the PR make sure the following are checked: