Every since the sslv3 POODLE bug came out I am unable to use casperjs with the "--engine=slimerjs" option.
Before POODLE I was able to run my casperjs script like this:
casperjs --engine=slimerjs script.js
But after POODLE I needed to also send the "--ssl-protocol=tlsv1" to casperjs. This works without using the slimer option like this:
casperjs --ssl-protocol=tlsv1 script.js
Now if I want to use the slimerjs engine and send the ssl-protocol like this:
casperjs --ssl-protocol=tlsv1 --engine=slimerjs script.js
it fails with:
unknown option --ssl-protocol=tlsv1
How can I use casperjs with slimerjs with the "--ssl-protocol=tlsv1" option?