mirror of
https://github.com/thoughtbot/capybara-webkit
synced 2023-03-27 23:22:28 -04:00
Bump to 0.12.0
This commit is contained in:
parent
846bb80137
commit
5c19691720
3 changed files with 16 additions and 5 deletions
|
@ -1,7 +1,7 @@
|
||||||
PATH
|
PATH
|
||||||
remote: .
|
remote: .
|
||||||
specs:
|
specs:
|
||||||
capybara-webkit (0.11.0)
|
capybara-webkit (0.12.0)
|
||||||
capybara (>= 1.0.0, < 1.2)
|
capybara (>= 1.0.0, < 1.2)
|
||||||
json
|
json
|
||||||
|
|
||||||
|
@ -22,8 +22,8 @@ GEM
|
||||||
ffi (~> 1.0.6)
|
ffi (~> 1.0.6)
|
||||||
diff-lcs (1.1.2)
|
diff-lcs (1.1.2)
|
||||||
ffi (1.0.11)
|
ffi (1.0.11)
|
||||||
json (1.6.5)
|
json (1.7.1)
|
||||||
mime-types (1.17.2)
|
mime-types (1.18)
|
||||||
mini_magick (3.2.1)
|
mini_magick (3.2.1)
|
||||||
subexec (~> 0.0.4)
|
subexec (~> 0.0.4)
|
||||||
multi_json (1.0.4)
|
multi_json (1.0.4)
|
||||||
|
@ -40,7 +40,7 @@ GEM
|
||||||
rspec-expectations (2.6.0)
|
rspec-expectations (2.6.0)
|
||||||
diff-lcs (~> 1.1.2)
|
diff-lcs (~> 1.1.2)
|
||||||
rspec-mocks (2.6.0)
|
rspec-mocks (2.6.0)
|
||||||
rubyzip (0.9.6.1)
|
rubyzip (0.9.7)
|
||||||
selenium-webdriver (2.19.0)
|
selenium-webdriver (2.19.0)
|
||||||
childprocess (>= 0.2.5)
|
childprocess (>= 0.2.5)
|
||||||
ffi (~> 1.0.9)
|
ffi (~> 1.0.9)
|
||||||
|
|
11
NEWS.md
11
NEWS.md
|
@ -1,3 +1,14 @@
|
||||||
|
New for 0.12.0:
|
||||||
|
* Better windows support
|
||||||
|
* Support for localStorage
|
||||||
|
* Added support for oninput event
|
||||||
|
* Added resize_window method
|
||||||
|
* Server binds on LocalHost to prevent having to add firewall exceptions
|
||||||
|
* Reuse NetworkAccessManager to prevent "too many open files" errors
|
||||||
|
* Response messages are stored as QByteArray to prevent truncating content
|
||||||
|
* Browser no longer tries to read empty responses (Fixes jruby issues).
|
||||||
|
* Server will timeout if it can not start
|
||||||
|
|
||||||
New for 0.11.0:
|
New for 0.11.0:
|
||||||
|
|
||||||
* Allow interaction with invisible elements
|
* Allow interaction with invisible elements
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
module Capybara
|
module Capybara
|
||||||
module Driver
|
module Driver
|
||||||
class Webkit
|
class Webkit
|
||||||
VERSION = '0.11.0'.freeze
|
VERSION = '0.12.0'.freeze
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue