Skip to content

Commit

Permalink
Merge pull request #2003 from shepmaster/patch-2
Browse files Browse the repository at this point in the history
Fix mismatched backtick
  • Loading branch information
twalpole committed Apr 7, 2018
2 parents 104da96 + a738410 commit 6937222
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UPGRADING.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The biggest user differences between Capybara 2.x and 3.x are the changes in beh
first('div', minimum: 0)
```

`all` will now wait up to `Capybara.default_max_wait_time' seconds for at least one matching element to exist, and return the matching elements. If no matching elements are found within the time it will return an empty result set. If you need to maintain the previous behavior you can pass `wait: false` as an option to `all`
`all` will now wait up to `Capybara.default_max_wait_time` seconds for at least one matching element to exist, and return the matching elements. If no matching elements are found within the time it will return an empty result set. If you need to maintain the previous behavior you can pass `wait: false` as an option to `all`

```ruby
all('div', wait: false)
Expand Down

0 comments on commit 6937222

Please sign in to comment.