2

cucumber-js ページには、ゾンビの例が示されています。

// features/support/world.js
var zombie = require('zombie');
var WorldConstructor = function WorldConstructor(callback) {

  var browser = new zombie();

  var world = {
    browser: browser,                        // this.browser will be available in step definitions
    visit: function(url, callback) {         // this.visit will be available in step definitions
      this.browser.visit(url, callback);
    }
  };

  callback(world); // tell Cucumber we're finished and to use our world object instead of 'this'
};
exports.World = WorldConstructor;

ゾンビの代わりに Phantomjs を使用することは可能ですか?

誰かが world.js の例を見せてもらえますか?

ありがとう。

4

1 に答える 1

4

最後に、解決策を見つけました:

// features/support/world.js
var webdriver = require("selenium-webdriver");

var WorldConstructor = function WorldConstructor(callback) {
  var world = {
    driver: new webdriver.Builder()
      .withCapabilities(webdriver.Capabilities.phantomjs())
      .build()
  };

  callback(world);
};

exports.World = WorldConstructor;

私はphantomjsをインストールする必要がありました:

npm install phantomjs

クロームドライバー

次のように chromedriver を使用することもできます。

npm install chromedriver

ドライバーを次のように変更することを忘れないでください。

driver: new webdriver.Builder()
  .withCapabilities(webdriver.Capabilities.chrome())
  .build()
于 2015-04-12T17:05:53.540 に答える