无法在 Cucumber 和 Testng 中运行并行测试



我正在尝试使用 Testng 和 Cucumber 在 2 个浏览器中运行并行测试。

得到以下异常,

cucumber.runtime.CucumberException:当钩子声明参数时 它必须是cucumber.api.Scenario类型。公共无效 com.sample.data_republic.样本_易趣.EbayTest.loadBrowser(java.lang.String( 在 cucumber.runtime.java.JavaHookDefinition.execute(JavaHookDefinition.java:52( at cucumber.runtime.Runtime.runHookIfTagsMatch(Runtime.java:224(

下面给出了代码示例。

import cucumber.api.java.After;
import cucumber.api.java.Before;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.testng.annotations.Parameters;
public class EbayTest extends EbayPageObjects {
    public WebDriver driver;
    Properties propertyObj;
    @Before
    @Parameters("browser")
    public void loadBrowser(String browser) {
        // If the browser is Firefox, then do this
        if (browser.equalsIgnoreCase("firefox")) {
            System.setProperty("webdriver.gecko.driver", "src/test/resources/drivers/geckodriver");
            driver = new FirefoxDriver();
        } else if (browser.equalsIgnoreCase("chrome")) {
            System.setProperty("webdriver.chrome.driver", "src/test/resources/drivers/chromedriver");
            driver = new ChromeDriver();
        }
        propertyObj = readPropertyFile();
        driver.get(propertyObj.getProperty("url"));
    }

Before hook是黄瓜方法,而不是testNg方法,该方法仅与Scenario对象一起注入。因此不能在其上使用@Parameters注释来传递参数值。您需要在钩子之前使用,如下所示。

@Before
public void beforeScenario(Scenario scenario) {

或没有方案对象

 @Before
    public void beforeScenario() {

您可以将浏览器值存储在属性文件中,并在钩子之前访问它。或者在 testNg 的 BeforeClass 或 BeforeMethod 中实例化驱动程序,您可以在其中使用参数注释。

@BeforeClass
@Parameters("browser")
public void loadBrowser(String browser) {

相关内容

  • 没有找到相关文章

最新更新