diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d52b32c9..0ac3d5e13 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -113,6 +113,7 @@ Last, all the casper test suites have been upgraded to use the new testing featu - Added [`Tester#skip`](http://docs.casperjs.org/en/latest/modules/tester.html#skip) method - Added [`Casper#eachThen()`](http://docs.casperjs.org/en/latest/modules/casper.html#eachThen) - merged [#427](https://github.com/n1k0/casperjs/issues/427) - Added `keepFocus` option to `Casper#sendKeys()` +- fixed [#441](https://github.com/n1k0/casperjs/issues/441) - added `--ssl-protocol` option support to the `casperjs` executable - `cli`: Now dropping an arg or an option will be reflected in their *raw* equivalent - `cli.get()` now supports fallback values diff --git a/bin/casperjs b/bin/casperjs index 16c0239a2..4820a8283 100755 --- a/bin/casperjs +++ b/bin/casperjs @@ -28,6 +28,7 @@ PHANTOMJS_NATIVE_ARGS = [ 'remote-debugger-port', 'remote-debugger-autorun', 'script-encoding', + 'ssl-protocol', 'web-security', ] CASPER_ARGS = [] diff --git a/rubybin/casperjs b/rubybin/casperjs index 8f242f680..f2ecd998c 100755 --- a/rubybin/casperjs +++ b/rubybin/casperjs @@ -30,6 +30,7 @@ PHANTOMJS_NATIVE_ARGS = [ '--remote-debugger-port', '--remote-debugger-autorun', '--script-encoding', + '--ssl-protocol', '--web-security', ]