Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
casperjs
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
8d6b2abc
...
8d6b2abc2a17152dd28e7b4eb9ac9b37d7ae11d9
authored
2013-05-04 17:15:23 +0200
by
Nicolas Perriault
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
fixed #441 - added ssl-protocol option support to casperjs executable
1 parent
137e90e6
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
0 deletions
CHANGELOG.md
bin/casperjs
rubybin/casperjs
CHANGELOG.md
View file @
8d6b2ab
...
...
@@ -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
...
...
bin/casperjs
View file @
8d6b2ab
...
...
@@ -28,6 +28,7 @@ PHANTOMJS_NATIVE_ARGS = [
'remote-debugger-port'
,
'remote-debugger-autorun'
,
'script-encoding'
,
'ssl-protocol'
,
'web-security'
,
]
CASPER_ARGS
=
[]
...
...
rubybin/casperjs
View file @
8d6b2ab
...
...
@@ -30,6 +30,7 @@ PHANTOMJS_NATIVE_ARGS = [
'--remote-debugger-port'
,
'--remote-debugger-autorun'
,
'--script-encoding'
,
'--ssl-protocol'
,
'--web-security'
,
]
...
...
Please
register
or
sign in
to post a comment