Commit b4345f19 b4345f19390637db37bbc46c1829908507c5d6be by hannyu Committed by Nicolas Perriault

update PHANTOMJS_ARGS

1 parent f27c3a43
#!/usr/bin/env ruby
# Ruby Wrapper for CasperJs
# Version: 1.0.0
# by hannyu
......@@ -10,18 +8,21 @@ CASPER_PATH = File.dirname(File.dirname(File.expand_path(__FILE__)))
PHANTOMJS_NATIVE_ARGS = [
'--cookies-file',
'--config',
'--debug',
'--disk-cache',
'--ignore-ssl-errors',
'--load-images',
'--load-plugins',
'--local-storage-path',
'--local-storage-quota',
'--local-to-remote-url-access',
'--max-disk-cache-size',
'--output-encoding',
'--remote-debugger-port',
'--remote-debugger-autorun',
'--proxy',
'--proxy-auth',
'--proxy-type',
'--remote-debugger-port',
'--remote-debugger-autorun',
'--script-encoding',
'--web-security',
]
......