我试图执行标准的演示项目,从原型‘thucydides-j士-原型’它在Windows 7机器上运行良好,但在Windows 8机器上,浏览器根本不打开。与Firefox和chrome在另一台机器上运行良好的项目一样,在Windows 8机器上也会失败。请注意,Thucydides报告是成功生成的,而且“easyb”原型的演示项目运行良好(并启动浏览器)。
下面是控制台的快照:
TEST STARTED: Looking up the definition of 'blank'
--------------------------------------------------------------------
Scenario: Looking up the definition of 'blank'
Given the user is on the Wikionary home page (PENDING)
When the user looks up the definition of the word '' (PENDING)
Then they should see the definition 'A common, round fruit produced by the tree Malus domestica, cultivated in temperate climates.' (PENDING)
@Given("the user is on the Wikionary home page")
@Pending
public void givenTheUserIsOnTheWikionaryHomePage() {
// PENDING
}
@When("the user looks up the definition of the word ''")
@Pending
public void whenTheUserLooksUpTheDefinitionOfTheWord() {
// PENDING
}请注意,上述步骤已完全实现。
下面是我的环境详细信息:- OS: Windows 8 IDE: Eclipse运行时:apache 3.2.1 Java版本: 1.7
发布于 2014-04-22 17:59:50
我找到决议了。这件小事让我睡不着觉:
在Windows中,确保项目的绝对路径不包含任何空格。
我移除了空间及其工作:-)
https://stackoverflow.com/questions/23092786
复制相似问题