Skip to content

Commit

Permalink
docs: update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
route committed Oct 14, 2022
1 parent 743ba25 commit e530a4d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@

### Fixed

- `Ferrum::Keyboard`
- `#up, #down` accept only one key.
- `Ferrum::Page#goto` fixed undefined method url for nil:NilClass when page times out and there are pending requests.


## [0.12](https://github.com/rubycdp/ferrum/compare/v0.11...v0.12) - (Sep 13, 2022) ##

### Added
Expand Down
6 changes: 2 additions & 4 deletions lib/ferrum/page.rb
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,7 @@ def reset
include Stream

attr_accessor :referrer
attr_reader :target_id, :browser,
:event,
:tracing
attr_reader :target_id, :browser, :event, :tracing

# Mouse object.
#
Expand Down Expand Up @@ -374,7 +372,7 @@ def prepare_page

@browser.command("Browser.setDownloadBehavior",
browserContextId: context.id,
downloadPath: browser.options[:save_path],
downloadPath: @browser.options[:save_path],
behavior: "allow", eventsEnabled: true)
end

Expand Down

0 comments on commit e530a4d

Please sign in to comment.