mirror of
https://github.com/teamcapybara/capybara.git
synced 2022-11-09 12:08:07 -05:00
Update History.md [ci skip]
This commit is contained in:
parent
e320f5d7fc
commit
252b77c067
2 changed files with 9 additions and 2 deletions
|
@ -1,9 +1,16 @@
|
||||||
# Version 3.4.0
|
# Version 3.4.0
|
||||||
Release date: unreleased
|
Release date: unreleased
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
* Make selenium driver :backspace clear stategy work even if caret location is in middle of field content [Champier Cyril]
|
||||||
|
* Selenium issue with fieldset nested in disabled fieldset not being considered disabled
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
* Wrokarounnd Selenium lack of support for `file_detector` with remote geckodriver
|
* Work around Selenium lack of support for `file_detector` with remote geckodriver
|
||||||
|
* `#within_frame` locator is optional when only one frame exists
|
||||||
|
* `Capybara.test_id` option that allows for matching the Capybara provided selector types
|
||||||
|
on an arbitrary attribute - defaults to `data-test-id`
|
||||||
|
|
||||||
# Version 3.3.1
|
# Version 3.3.1
|
||||||
Release date: 2018-06-27
|
Release date: 2018-06-27
|
||||||
|
|
|
@ -410,7 +410,7 @@ module Capybara
|
||||||
# @overload within_frame(element)
|
# @overload within_frame(element)
|
||||||
# @param [Capybara::Node::Element] frame element
|
# @param [Capybara::Node::Element] frame element
|
||||||
# @overload within_frame([kind = :frame], locator, **options)
|
# @overload within_frame([kind = :frame], locator, **options)
|
||||||
# @param [Symbol] kind Optional selector type (:css, :xpath, :field, etc.) - Defaults to :frame
|
# @param [Symbol] kind Optional selector type (:frame, :css, :xpath, etc.) - Defaults to :frame
|
||||||
# @param [String] locator The locator for the given selector kind. For :frame this is the name/id of a frame/iframe element
|
# @param [String] locator The locator for the given selector kind. For :frame this is the name/id of a frame/iframe element
|
||||||
# @overload within_frame(index)
|
# @overload within_frame(index)
|
||||||
# @param [Integer] index index of a frame (0 based)
|
# @param [Integer] index index of a frame (0 based)
|
||||||
|
|
Loading…
Reference in a new issue