对使用硒独立罐的phantomjs量角器测试, [英] Protractor test on phantomjs with the use of selenium standalone jar,

查看:246
本文介绍了对使用硒独立罐的phantomjs量角器测试,的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图对phantomjs使用selenium-standalone-server.jar运行量角器测试,但它给我这样的错误。我在ubuntu 14.04运行这个。

I am trying to run protractor tests on phantomjs with the use of selenium-standalone-server.jar but it is giving me such error.I am running this in ubuntu 14.04.

这里是我的protractor-config.js文件

Here is my protractor-config.js file

exports.config = {

    framework: 'cucumber',

    seleniumServerJar: 'node_modules/selenium-standalone/.selenium/2.43.1/server.jar',

    specs: [
        'specs/cucumber/*.feature'
    ],
    baseUrl: '',
    cucumberOpts: {
        format: 'pretty'
    },
    capabilities: {
        browserName: 'phantomjs',
        'phantomjs.binary.path': 'node_modules/phantomjs/bin/phantomjs',
        shardTestFiles: true,
        maxInstances: 3
    }
};

错误:

    Running "protractor:phantom" (protractor) task
Starting selenium standalone server...
Selenium standalone server started at http://172.31.9.51:38462/wd/hub

 PROJECT_DIR/node_modules/protractor/node_modules/selenium-webdriver/lib/webdriver/webdriver.js:148
   var session = flow.execute(function() {
                      ^
 UnknownError: The driver is not executable: PROJECT_DIR/node_modules/phantomjs/bin/phantomjs
     at <anonymous>
     at <anonymous>
     at <anonymous>
     at <anonymous>
     at <anonymous>
     at <anonymous>
     at <anonymous>
     at <anonymous>
     at <anonymous>
     at <anonymous>
     at <anonymous>
     at <anonymous>
     at <anonymous>
     at <anonymous>
     at <anonymous>
     at <anonymous>
     at <anonymous>
     at <anonymous>
     at <anonymous>
     at <anonymous>
     at <anonymous>
 ==== async task ====
 WebDriver.createSession()
     at Function.webdriver.WebDriver.acquireSession_ (PROJECT_DIR/node_modules/protractor/node_modules/selenium-webdriver/lib/webdriver/webdriver.js:148:22)
     at Function.webdriver.WebDriver.createSession (PROJECT_DIR/node_modules/protractor/node_modules/selenium-webdriver/lib/webdriver/webdriver.js:122:30)
     at Builder.build (PROJECT_DIR/node_modules/protractor/node_modules/selenium-webdriver/builder.js:293:22)
     at LocalDriverProvider.getDriver (PROJECT_DIR/node_modules/protractor/lib/driverProviders/local.js:121:9)
     at PROJECT_DIR/node_modules/protractor/lib/runner.js:238:41
     at _fulfilled (PROJECT_DIR/node_modules/protractor/node_modules/q/q.js:797:54)
     at self.promiseDispatch.done (PROJECT_DIR/node_modules/protractor/node_modules/q/q.js:826:30)
     at Promise.promise.promiseDispatch (PROJECT_DIR/node_modules/protractor/node_modules/q/q.js:759:13)
     at PROJECT_DIR/node_modules/protractor/node_modules/q/q.js:573:44
 >> 
 Fatal error: protractor exited with code: 1

请帮我解决这个问题。 / p>

Please help me to solve this.

推荐答案

到了晚了,但这是我的protractor.config.js

Its to late but this is my protractor.config.js

exports.config = {
 baseUrl: 'http://localhost:9001',
 seleniumAddress: 'http://127.0.0.1:4444/wd/hub',
 framework: 'cucumber',
 specs: [
  'test/features/*.feature'
 ],
 capabilities: {
   browserName: 'phantomjs',
   'phantomjs.binary.path': './node_modules/karma-phantomjs-launcher/node_modules/phantomjs/bin/phantomjs',
   'phantomjs.cli.args': '--web-security=false --debug=true --webdriver --webdriver-logfile=webdriver.log --webdriver-loglevel=DEBUG',
   version: '',
   platform: 'ANY'
 },
 cucumberOpts: {
  require: 'test/features/steps/*_step.js',
  format: 'pretty'
 }
}

这篇关于对使用硒独立罐的phantomjs量角器测试,的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆