Watir PhantomJS驱动程序忽略SSL错误的可选参数



大家好,

我正在致力于自动化一些Ruby脚本,使它们无头。我最初的方法尝试Watir及其PhantomJS模块。我们的本地测试环境使用自签名我知道一些浏览器会出错的证书。我知道PhantomJS有一个ignoreSSLlerrors选项,但不知道如何指定PhantomJS驱动程序应该使用它。我可以创建一个无头浏览器phantom js会话,没有任何问题,但当我尝试要使用自签名证书导航到网页,我什么也得不到——没有错误,没有文本,没有说明为什么我的页面没有加载。

基本上就是这样(odysseyURL在其他地方被定义为字符串URLFirefox可以毫无问题地加载):

irb(main):035:0* driver = Watir::Browser.new :phantomjs
PhantomJS is launching GhostDriver...
[INFO  - 2013-12-05T15:48:49.998Z] GhostDriver - Main - running on port 8910
[INFO  - 2013-12-05T15:48:50.219Z] Session [bc1bd280-5dc4-11e3-8b99-7bac3d2f1d15]
 -_decorateNewWindow - page.settings{"XSSAuditingEnabled":false,
"javascriptCanCloseWindows":true,"javascriptCanOpenWindows":true,"
javascriptEnabled":true,"loadImages":true,"localToRemoteUrlAccessEnabled":false,
"userAgent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/534.34 (KHTML, like 
Gecko) PhantomJS/1.9.2 Safari/534.34","webSecurityEnabled":true}
[INFO  - 2013-12-05T15:48:50.252Z] Session [bc1bd280-5dc4-11e3-8b99-7bac3d2f1d15]
- page.customHeaders:  - {}
[INFO  - 2013-12-05T15:48:50.262Z] Session [bc1bd280-5dc4-11e3-8b99-7bac3d2f1d15]
- CONSTRUCTOR - Desired Capabilities:{"browserName":"phantomjs","version":"",
"platform":"ANY","javascriptEnabled":true,"cssSelectorsEnabled":true,
"takesScreenshot":true,"nativeEvents":false,"rotatable":false}
[INFO  - 2013-12-05T15:48:50.283Z] Session [bc1bd280-5dc4-11e3-8b99-7bac3d2f1d15]
- CONSTRUCTOR - Negotiated Capabilities: {"browserName":"phantomjs","version":
"1.9.2","driverName":"ghostdriver","driverVersion":"1.0.4","platform":
"windows-8-32bit","javascriptEnabled":true,"takesScreenshot":true,"handlesAlerts":
false,"databaseEnabled":false,"locationContextEnabled":false,
"applicationCacheEnabled":false,"browserConnectionEnabled":false,
"cssSelectorsEnabled":true,"webStorageEnabled":false,"rotatable":false,
"acceptSslCerts":false,"nativeEvents":true,"proxy":{"proxyType":"direct"}}
[INFO  - 2013-12-05T15:48:50.327Z] SessionManagerReqHand -
_postNewSessionCommand - New Session Created: bc1bd280-5dc4-11e3-8b99-7bac3d2f1d15
=> #<Watir::Browser:0x73fac05c url="about:blank" title="">
irb(main):036:0>
irb(main):037:0* =begin
<en processed and works headless.  Everything below is still being modified
irb(main):039:0= =end
irb(main):040:0*
irb(main):041:0* driver.goto(odysseyURL)
=> "about:blank"
irb(main):042:0> puts(driver.text)
=> nil
irb(main):043:0> puts(driver.html)
<html><head></head><body></body></html>
=> nil

我已经搜索和研究了Watir和Ghostdriver,寻找类似的文档,但发现的几乎没有任何帮助。

将感谢任何帮助,mpozos

通过在https页面上启动watir/fintomjs,我面临着同样的问题,结果是

<html><head></head><body></body></html>

所以我试着用mechanize绕过它,但我面临着另一个问题。。

这是由于ssl证书。我在新实例中添加ssl版本并"不考虑ssl错误"来解决此问题。。但我仍然需要解决主要的水问题。。

我发现了以下信息,今晚我将进行测试。。

第一个,在启动phantomjs:时包含更多信息

switches = ['--proxy=69.106.88.7:60199', '--proxy-auth=username:password123']
browser = Watir::Browser.new :phantomjs, :args => switches

第二,phantomjs的用法:

Usage: phantomjs [options] script.[js|coffee] [script argument [script argument ...]]
Options:
    --load-images=[yes|no]             Load all inlined images (default is 'yes').
    --load-plugins=[yes|no]            Load all plugins (i.e. 'Flash', 'Silverlight', ...)  (default is 'no').
    --proxy=address:port               Set the network proxy.
    --disk-cache=[yes|no]              Enable disk cache (at desktop services cache storage location, default is 'no').
    --ignore-ssl-errors=[yes|no]       Ignore SSL errors (i.e. expired or self-signed certificate errors).

所以我想测试一下这个解决方案:

switches = ['--ignore-ssl-errors=yes']
browser = Watir::Browser.new :phantomjs, :args => switches

我将公布结果然后

编辑:这个解决方案我没有成功。。我直接去了那里。。希望这能帮助

最新更新