1
0
Fork 0
mirror of https://github.com/teamcapybara/capybara.git synced 2022-11-09 12:08:07 -05:00

Merge pull request #2003 from shepmaster/patch-2

Fix mismatched backtick
This commit is contained in:
Thomas Walpole 2018-04-06 17:03:26 -07:00 committed by GitHub
commit 69372224ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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)