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

Update History.md and version [ci skip]

This commit is contained in:
Thomas Walpole 2020-04-04 14:46:11 -07:00
parent 696f9d38a5
commit e8404859b8
3 changed files with 11 additions and 5 deletions

View file

@ -1,5 +1,13 @@
# Version 3.32.1
Release date: unreleased
### Fixed
* Rapid set now respects field maxlength (Issue #2332)
* Only path pause into legacy actions in Selenium < 4 (Issue #2334)
# Version 3.32.0
Relesae date: 2020-03-29
Release date: 2020-03-29
### Added

View file

@ -1,5 +1,5 @@
# frozen_string_literal: true
module Capybara
VERSION = '3.32.0'
VERSION = '3.32.1'
end

View file

@ -455,7 +455,7 @@ RSpec.shared_examples 'Capybara::Session' do |session, mode|
end
end
it 'works with rapid fill' do
it 'works with rapid fill' do
skip "This test doesn't support older browsers" if ie?(session)
session.visit 'react'
@ -464,8 +464,6 @@ RSpec.shared_examples 'Capybara::Session' do |session, mode|
session.fill_in('Name:', with: long_string)
session.accept_prompt "A name was submitted: #{long_string}" do
session.click_button('Submit')
require 'byebug'
byebug
end
end
end