fixed #441 - added ssl-protocol option support to casperjs executable
Showing
3 changed files
with
3 additions
and
0 deletions
... | @@ -113,6 +113,7 @@ Last, all the casper test suites have been upgraded to use the new testing featu | ... | @@ -113,6 +113,7 @@ Last, all the casper test suites have been upgraded to use the new testing featu |
113 | - Added [`Tester#skip`](http://docs.casperjs.org/en/latest/modules/tester.html#skip) method | 113 | - Added [`Tester#skip`](http://docs.casperjs.org/en/latest/modules/tester.html#skip) method |
114 | - Added [`Casper#eachThen()`](http://docs.casperjs.org/en/latest/modules/casper.html#eachThen) | 114 | - Added [`Casper#eachThen()`](http://docs.casperjs.org/en/latest/modules/casper.html#eachThen) |
115 | - merged [#427](https://github.com/n1k0/casperjs/issues/427) - Added `keepFocus` option to `Casper#sendKeys()` | 115 | - merged [#427](https://github.com/n1k0/casperjs/issues/427) - Added `keepFocus` option to `Casper#sendKeys()` |
116 | - fixed [#441](https://github.com/n1k0/casperjs/issues/441) - added `--ssl-protocol` option support to the `casperjs` executable | ||
116 | - `cli`: Now dropping an arg or an option will be reflected in their *raw* equivalent | 117 | - `cli`: Now dropping an arg or an option will be reflected in their *raw* equivalent |
117 | - `cli.get()` now supports fallback values | 118 | - `cli.get()` now supports fallback values |
118 | 119 | ... | ... |
... | @@ -28,6 +28,7 @@ PHANTOMJS_NATIVE_ARGS = [ | ... | @@ -28,6 +28,7 @@ PHANTOMJS_NATIVE_ARGS = [ |
28 | 'remote-debugger-port', | 28 | 'remote-debugger-port', |
29 | 'remote-debugger-autorun', | 29 | 'remote-debugger-autorun', |
30 | 'script-encoding', | 30 | 'script-encoding', |
31 | 'ssl-protocol', | ||
31 | 'web-security', | 32 | 'web-security', |
32 | ] | 33 | ] |
33 | CASPER_ARGS = [] | 34 | CASPER_ARGS = [] | ... | ... |
... | @@ -30,6 +30,7 @@ PHANTOMJS_NATIVE_ARGS = [ | ... | @@ -30,6 +30,7 @@ PHANTOMJS_NATIVE_ARGS = [ |
30 | '--remote-debugger-port', | 30 | '--remote-debugger-port', |
31 | '--remote-debugger-autorun', | 31 | '--remote-debugger-autorun', |
32 | '--script-encoding', | 32 | '--script-encoding', |
33 | '--ssl-protocol', | ||
33 | '--web-security', | 34 | '--web-security', |
34 | ] | 35 | ] |
35 | 36 | ... | ... |
-
Please register or sign in to post a comment