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

tagged 2.10.0

This commit is contained in:
Thomas Walpole 2016-10-05 10:30:12 -07:00
parent 4b5147cd45
commit 729919a2f3
2 changed files with 5 additions and 4 deletions

View file

@ -1,17 +1,18 @@
#Edge
#2.10.0
Release date: 2016-10-05
### Added
* Select `<button>` elements with descendant images with `alt` attributes matching the locator [Ian Lesperance]
* Locator string is optional in selector based matchers [Thomas Walpole]
* Selectors can specify their default visible setting [Thomas Walpole]
* Selector based finders and matchers can be passed a block to further filter the result [Thomas Walpole]
* Selector based finders and matchers can be passed a block to filter the results within the retry behavior [Thomas Walpole]
#Version 2.9.2
Release date: 2016-09-29
### Fixed
* :label built-in selector finds nested label/control by control id if the label has no 'for' attribute [Thomas Walpole]
* Warning issued if an unknown selector type is specified
* Warning issued if an unknown selector type is specified [Thomas Walpole]
#Version 2.9.1
Release date: 2016-09-23

View file

@ -1,4 +1,4 @@
# frozen_string_literal: true
module Capybara
VERSION = '2.9.2'
VERSION = '2.10.0'
end