Commit 8d6b2abc 8d6b2abc2a17152dd28e7b4eb9ac9b37d7ae11d9 by Nicolas Perriault

fixed #441 - added ssl-protocol option support to casperjs executable

1 parent 137e90e6
......@@ -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
......
......@@ -28,6 +28,7 @@ PHANTOMJS_NATIVE_ARGS = [
'remote-debugger-port',
'remote-debugger-autorun',
'script-encoding',
'ssl-protocol',
'web-security',
]
CASPER_ARGS = []
......
......@@ -30,6 +30,7 @@ PHANTOMJS_NATIVE_ARGS = [
'--remote-debugger-port',
'--remote-debugger-autorun',
'--script-encoding',
'--ssl-protocol',
'--web-security',
]
......