diff --git a/rails/select-a-select-by-selector.md b/rails/select-a-select-by-selector.md index 58f035e..dbd3eb9 100644 --- a/rails/select-a-select-by-selector.md +++ b/rails/select-a-select-by-selector.md @@ -9,8 +9,8 @@ select("Charizard", from: "Pokemon") However, not all forms are going to have a label paired with every `select` input. We don't want to let our test coverage suffer, so we are going to -need a different way to select. Capybara allows us to chain `select` off a -`find` like so: +need a different way to select. Fortunately, Capybara allows us to chain +`select` off a `find` like so: ```ruby find('#pokemon_list').select('Charizard')