Javascript PhantomJS ghostdriver停止

Javascript PhantomJS ghostdriver停止,javascript,phantomjs,gulp,protractor,ghostdriver,Javascript,Phantomjs,Gulp,Protractor,Ghostdriver,我正试图用phantomjs、ghostdriver和量角器在我的笔记本电脑上运行e2e测试。我运行以下命令: phantomjs--webdriver=5000 吞咽量角器 当我运行第一个命令时,一切看起来都很好,但当我运行第二个命令时,phantomjs.exe在几秒钟后崩溃(只是停止) phantomjs错误: λ phantomjs --webdriver=5000 PhantomJS is launching GhostDriver... [INFO - 2015-04-07T0

我正试图用phantomjs、ghostdriver和量角器在我的笔记本电脑上运行e2e测试。我运行以下命令:

  • phantomjs--webdriver=5000
  • 吞咽量角器
当我运行第一个命令时,一切看起来都很好,但当我运行第二个命令时,phantomjs.exe在几秒钟后崩溃(只是停止)

phantomjs错误:

λ phantomjs --webdriver=5000
PhantomJS is launching GhostDriver...
[INFO  - 2015-04-07T06:53:53.792Z] GhostDriver - Main - running on port 5000
[INFO  - 2015-04-07T06:54:00.583Z] Session [dec7cd30-dcf2-11e4-b182-055bc0259fc0] - page.settings - {"XSSAuditi
ngEnabled":false,"javascriptCanCloseWindows":true,"javascriptCanOpenWindows":true,"javascriptEnabled":true,"loa
dImages":true,"localToRemoteUrlAccessEnabled":false,"userAgent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKi
t/534.34 (KHTML, like Gecko) PhantomJS/1.9.8 Safari/534.34","webSecurityEnabled":true}
[INFO  - 2015-04-07T06:54:00.583Z] Session [dec7cd30-dcf2-11e4-b182-055bc0259fc0] - page.customHeaders:  - {}
[INFO  - 2015-04-07T06:54:00.584Z] Session [dec7cd30-dcf2-11e4-b182-055bc0259fc0] - Session.negotiatedCapabilit
ies - {"browserName":"phantomjs","version":"1.9.8","driverName":"ghostdriver","driverVersion":"1.1.0","platform
":"windows-8-32bit","javascriptEnabled":true,"takesScreenshot":true,"handlesAlerts":false,"databaseEnabled":fal
se,"locationContextEnabled":false,"applicationCacheEnabled":false,"browserConnectionEnabled":false,"cssSelector
sEnabled":true,"webStorageEnabled":false,"rotatable":false,"acceptSslCerts":false,"nativeEvents":true,"proxy":{
"proxyType":"direct"}}
[INFO  - 2015-04-07T06:54:00.584Z] SessionManagerReqHand - _postNewSessionCommand - New Session Created: dec7cd
30-dcf2-11e4-b182-055bc0259fc0
吞咽量角器错误:

   Error: ECONNREFUSED connect ECONNREFUSED
   Stacktrace:
     Error: ECONNREFUSED connect ECONNREFUSED
    at ClientRequest.<anonymous> (C:\Users\Eigenaar\Documents\3de_Academiejaar\Stage\GitHub_Repos\proj_Jesper\n
ode_modules\protractor\node_modules\selenium-webdriver\http\index.js:145:16)
    at ClientRequest.emit (events.js:107:17)
    at Socket.socketErrorListener (_http_client.js:272:9)
    at Socket.emit (events.js:107:17)
    at net.js:451:14
    at process._tickCallback (node.js:355:11)
==== async task ====
Protractor.waitForAngular()
    at ....

问题解决了。当我和gulp一起工作时,我忘了运行一个命令,这把整个项目搞砸了。。。“大口发球”是关键!现在,他将使用phantomJS运行e2e测试。谢谢大家的帮助!非常感谢。

您是否使用WebDriver.createSession()创建了会话?检查此项,我将node.js降级为0.10.3。我现在有一些其他的问题,但我这里几乎没有互联网,所以,我能够非常缓慢地解决问题#WeloveChina我不知道这是否会有帮助,但请查看此问题的公认ans-,此人补充道--ssl errors=true参数
exports.config = {
    rootElement: 'html',
    seleniumAddress: 'http://127.0.0.1:5000',

    capabilities: {
        'browserName': 'phantomjs',
        'phantomjs.binary.path': require('phantomjs').path
    },

    specs: [paths.e2e + '/**/*.js'],

    jasmineNodeOpts: {
        showColors: true,
        defaultTimeoutInterval: 30000
    }
};