Postmodern
Postmodern
Maybe in ferrum 1.0.0 you could rename `cookies` to `cookie_jar` which would imply all cookies, and have a `cookies` method that only returned the cookies used by the current page.
@route would appreciate some guidance on this new feature and where I should add the specs and documentation?
@ttilberg hmm that solved the exception, except now it does not appear that my `on(:response)` callback is being called back.
@ttilberg yeah it's added in this PR. Feel free to pull my branch and try to mess with it. I swear it was working last year.
OK I added some echo debugging and the `@client.on('Network.responseReceived')` callback is being called, but it's not finding the exchange object for the given `params['requestId']`, so the passed in `block` is...
Got it, I needed to do `network.select` from the context of `Ferrum::Page`.
@solnic what's your rough estimation for how long it will take to find and fix this bug? Obviously being forced to duplicate the parent schema for both mapping in both...
@eregon I discovered this divergent behavior when some of my code re-raised a `RegexpError` as an `OptionParser::InvalidArgument` exception. RSpec also insists on testing both the exception class and the exception...
@nirvdrum oops you're right. I still haven't had my coffee yet.
Ruby's YAML library will prefer double-quotes to single-quotes. Appears that single-quotes are only used when the String contains a `:` character. I think it's acceptable to allow single-quotes in that...