0

嗨,我在 Eclipse 中使用 Maven 设置了一个 Java 项目。

每当我尝试运行脚本时,我都会遇到问题。它是通过不打开我从功能文件中解析的所需网站来执行的。

请查看以下代码和我在 eclipse 中设置的目录的图像

Eclipse 目录结构

这是我的 PageStepsDefs.java 代码

package com.workshop.airport.workshop.airport;

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;

import cucumber.api.java.After;
import cucumber.api.java.Before;
import cucumber.api.java.en.Given;

public class PageStepsDefs {

    public String ChromeDriverPath="C:\\Users\\zain.jamshaid\\Desktop\\chromedriver.exe";
    public WebDriver driver;
    String localhost="www.google.com";

    @Before
    public void deleteAllCookies() {
        driver.manage().deleteAllCookies();
        driver.manage().window().maximize();
    }

    @Before
    public void setup(){
        System.setProperty("webdriver.chrome.driver",ChromeDriverPath);
        driver = new ChromeDriver();    
    }

    @Given("^I browse to the (.+) page$")
    public void open_page(String url)
    {

        driver.get(localhost+url);
        System.out.println(localhost+url);
    }

    @After
    public void tearDown(){
        driver.quit();
    }
}

这是我的 RunCukeTest.java 代码

package com.workshop.airport.workshop.airport;

import cucumber.api.junit.*;
import org.junit.runner.RunWith;

@RunWith(Cucumber.class)
@Cucumber.Options(
        tags={"@mysingle"},
        format={"pretty", "html:target/cucumber-html-report"},
        monochrome=true,
        features={"."}, 
        strict=true)

public class RunCukeTest {

}

这是功能文件中的语句

Feature: Login Functionality
@mysingle
Scenario: user successfully logins to the application

    Given I browse to the / page

任何帮助都会很棒。

提前致谢。赞恩

4

2 回答 2

1

它真的在执行您的功能文件吗?尝试在test.feature下面放置src/test/resources/com/workshop/airport/workshop/airport:运行的 JUnit 使用单元测试包作为查找功能文件的位置。

于 2013-05-24T15:24:29.390 回答
1

我想我知道问题所在。根据您的评论,功能文件中的“/”正在正确解析为您的步骤。所以这不是黄瓜的问题。我认为问题在于您的网址。您拥有的网址格式不正确。URL 应以http://

我认为如果您将 localhost 变量更改为String localhost="http://www.google.com";

于 2013-05-24T17:38:12.067 回答