美好的一天,我的代码中的同志们:
我遵循了一些使用僵尸和黄瓜的香草设置示例。基本问题是我在第一步中访问了一个站点。然后,在下一步中,僵尸浏览器不再意识到它。我有一个非常基本的设置,所以我不确定我可能会丢失什么。
这是我从项目主页运行测试的方式:
./node_modules/.bin/cucumber.js -r features/
这是黄瓜文件,很短:
Feature: Load up the web page
Scenario: Go to the index page
Given I go to the "" page
Then I should see "Start"
这是两个步骤的定义。正如你所看到的,为了理智,我只是想访问谷歌:
assert = require('assert')
module.exports = function(){
this.World = require(process.cwd() + "/features/support/world").World;
this.Given(/^I go to the "([^"]*)" page$/, function (subpath, callback) {
this.browser.visit("http://www.google.com", function(e,browser){
//console.log(browser.html());
});
callback();
});
this.Then(/^I should see "([^"]*)"$/, function (arg1, callback) {
console.log(this.browser.location.pathname);
console.log(this.browser.html());
callback();
});
}
这是运行时的输出:
./
<html><head></head><body></body></html>
.
1 scenario (1 passed)
2 steps (2 passed)
如果我在第一步中取消注释 console.log,输出是访问 google 的 HTML,a la:
<html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head> <meta content="application/xhtml+xml; charset=UTF-8" http-equiv="Content-Type" /> <title>Google</title>
等等。
这是我的 world.js 设置。这很香草:
var zombie = require('zombie')
var World = function World(callback){
this.browser = new zombie.Browser();
callback();
};
module.exports.World = World;