我有一个使用maven在Eclipse中进行的Jbehave和selenium项目。最初我是为一个故事做的,但是现在我写了两个故事,并且我希望在测试中运行两个故事。但是只有一个故事文件可以通过该程序。如何在文件夹资源中找到所有故事文件?
到目前为止,这是我的代码 Google.java
public class Google extends JUnitStory {
@Override
public Configuration configuration(){
return new MostUsefulConfiguration().useStoryLoader(
new LoadFromClasspath(this.getClass()))
.useStoryReporterBuilder(
new StoryReporterBuilder().withCodeLocation(
CodeLocations.codeLocationFromClass(this
.getClass())).withFormats(
Format.CONSOLE, Format.TXT, Format.HTML, Format.STATS))
;
}
@Override
public List<CandidateSteps> candidateSteps(){
return new InstanceStepsFactory(configuration(),
new GoogleStep()) //can put in a comma separated list of Step implementers here
.createCandidateSteps();
}
protected List<String> storyPaths(){
return new StoryFinder().findPaths(
CodeLocations.codeLocationFromClass(this.getClass()),
"*.story", "");
GoogleStep.java
public class GoogleStep {
private WebDriver driver;
private FluentWait<WebDriver> fWait;
public GoogleStep() {
System.setProperty("webdriver.gecko.driver","C:\\Program Files\\GeckoDriver\\geckodriver.exe");
File pathToBinary = new File("C:\\Program Files\\Mozilla Firefox\\firefox.exe");
FirefoxBinary ffBinary = new FirefoxBinary(pathToBinary);
FirefoxOptions options = new FirefoxOptions();
options.setCapability("moz:firefoxOptions", options.setBinary(ffBinary));
WebDriver driver2 = new FirefoxDriver(options);
driver = driver2;
fWait = new FluentWait<WebDriver>(driver).pollingEvery(500,
TimeUnit.MILLISECONDS).withTimeout(10, TimeUnit.SECONDS);
}
//Google Mapping
@Given("I navigate to google.lk")
public void navigateToGoogle(){
driver.get("https://www.google.lk/");
fWait.until(ExpectedConditions.visibilityOfElementLocated(By.id("lst-ib")));
}
@When("I perform a google search for $query")
public void performASearchForGoogleQuery(String query){
driver.findElement(By.id("lst-ib")).sendKeys(query);
}
@Then("I click google Search Button")
public void clickSearchGoogleButton() {
driver.findElement(By.xpath("//input[@value='Google Search']")).click();
}
@Then("A google link $text exists in the results")
public void linkContainingTextExistsInTheGoogleResults(String resultText){
driver.getPageSource().contains(resultText);
}
//yahoo mapping
@Given("I navigate to yahoo.com")
public void navigateToYahoo(){
driver.get("https://www.yahoo.com/");
fWait.until(ExpectedConditions.visibilityOfElementLocated(By.id("uh-search-box")));
}
@When("I perform a yahoo search for $query")
public void performASearchForYahooQuery(String query){
driver.findElement(By.id("uh-search-box")).sendKeys(query);
}
@Then("I click yahoo Search Button")
public void clickSearchYahooButton() {
driver.findElement(By.xpath("//*[@id='uh-search-button']")).click();
}
@Then("A yahoo link $text exists in the results")
public void linkContainingTextExistsInTheYahooResults(String resultText){
driver.getPageSource().contains(resultText);
}
我有两个故事文件,分别名为google.story和yahoo.story
我的文件夹结构如下
我在这里做错了什么或我必须做什么?任何帮助都将非常有帮助。
答案 0 :(得分:1)
这是我的方法:
@Override
protected List<String> storyPaths() {
URL searchLoc = CodeLocations.codeLocationFromClass(this.getClass());
return new StoryFinder().findPaths(searchLoc, Arrays.asList("**/google.story",
"**/yahoo.story",
""),
Arrays.asList("**/excluded*.story"));
}
第一个数组列表中的多余元素可能不是必需的,但是我将其包括在内,因为我最初从中获取信息的示例就是这样做的,但是我可以以此方式添加多个故事,只需为每个新元素添加更多元素故事,如果我只想讲一个故事,则可以在每个我不想讲的故事之前加上注释双斜杠(//),即
return new StoryFinder().findPaths(searchLoc, Arrays.asList("**/google.story",
//"**/yahoo.story",
""),
Arrays.asList("**/excluded*.story"));
只能运行google.story。
答案 1 :(得分:1)
发现我在做什么错。我从JUnitStory扩展了该类.JunitStory类不允许您覆盖storyPath方法,但是要运行多个故事,我必须从JUnitStories扩展它并覆盖Storypath方法。解决了我的问题。感谢您再次为您的答复付费。