Releases: andrewvy/chrome-remote-interface
Releases · andrewvy/chrome-remote-interface
v0.4.0
v0.4.0
Enhancements
- [Dependencies] Switch from
Poison
-> Jason
.
- [Internal] Adds a
mix fetch_cdp_protocol
which updates all protocol files.
- [Protocol] Update
1-3
and tot
protocols as of 2019-08-03
Bug Fixes
- [README] Fix
list_page
-> list_pages
in README.md (#23)
v0.2.0
This release contains:
protocol.json
bump to the latest 1.3 APIs.
- Customizable timeouts for blocking RPC calls (#22)
v0.1.0
This release contains:
- New protocol.json file for newer protocol APIs. (#24)
v0.0.6
This release contains:
- A fix for Chrome 64+ around Page IDs being wrapped in parens (fixes #17)
v0.0.5
This release contains:
- Small bugfix for handling
Session
calls that return successful non-json responses. (#18)
v0.0.3
This release contains:
- Ability to pass in
async: true
when calling an RPC function. This turns the call into a non-blocking operation that sends back the response as a message to the calling process.
v0.0.2
This release contains:
- Ability to subscribe to events using
PageSession.subscribe(page_pid, event_name)
- Ability to unsubscribe from events using
PageSession.unsubscribe(page_pid, event_name)
- Ability to unsubscribe from all events using
PageSession.unsubscribe_all(page_pid)