依赖注入-黄瓜微微容器

时间:2018-07-01 17:10:45

标签: java frameworks cucumber ui-automation picocontainer

在我的情况下,我很难理解和利用依赖注入。我想使用Pico容器(https://cucumber.io/blog/2015/07/08/polymorphic-step-definitions)。

这是我的情况...我目前有一个步骤定义类,其中包含我所有的硒,并且变得太大了:

public class StepDefinitions{
    public static WebDriver driver; // a driver is returned here from a static Driver Factory Class
    LoginPage loginPage = new LoginPage(driver); //Page Object Model(s)

    @Before("setup")
    @After //screen snapshot
    @After("destroy")
    @Given //many methods with this tag
    @When  //many methods with this tag
    @Then  //many methods with this tag
}

现在,我可能希望拥有一个包含我的驱动程序,POM和挂钩的类:

public static WebDriver driver; //driver is returned from a static Driver Factory Class
LoginPage loginPage = new LoginPage(driver); //Page Object Model(s)

 @Before("setup")
 @After
 @After("destroy")

另一个包含我的@Given的类,一个包含我的@When的类,另一个包含我的@Then的类

然后我需要正确连接所有内容,以便所有类可以利用驱动程序,挂钩和POM。 Cucumber不支持继承,因此必须采用接口或依赖注入(Pico容器)。我不知道该怎么做,而且我已经在网上学习过,我无法将我那可怜的大脑包裹在这一切上。

2 个答案:

答案 0 :(得分:3)

您可能对我的博客文章感兴趣,其中我使用Pico容器在两个不同的Cucumber-JVM步骤类http://www.thinkcode.se/blog/2017/04/01/sharing-state-between-steps-in-cucumberjvm-using-picocontainer

之间共享状态

答案 1 :(得分:2)

您可能无法实现继承,但可以在步骤定义类中使用构造函数从一个类传递驱动程序对象引用到另一个。

  1. 创建一个基类/基础类,以初始化您的驱动程序对象/页面对象类。使用@Before注释定义设置,并使用@After定义拆卸方法。

public class Step_Def_Base {

    public static webDriverCreator test;
        @Before
        public void printScenario(Scenario scenario) {
            test = new webDriverCreator(this.getClass().getSimpleName());
            String className = this.getClass().getCanonicalName();
            System.out.println("********************************************************");
            System.out.println("Scenario: " + scenario.getName());
            System.out.println("********************************************************");
        }

        @After
        public void screenShotAndConsoleLog(Scenario result) {
              test.takescreenshot.takeScreenShotOnException(result);
            if (!(result.getStatus().contains("pass"))) {
                throw new RuntimeException(result.getName() + " got failed");
            }
            test.closeBrowserSession();
        }



}

  1. 在步骤定义类中,创建一个构造函数,并使用上下文实例化baseFoundation对象。在这里,微微容器发挥了神奇的作用,将步骤定义类的驱动程序对象与另一个类链接在一起。

public class StepDefs_AltoroMutualLoginPage  {

    private Step_Def_Base contextStep;
    private webDriverCreator test;
    public StepDefs_AltoroMutualLoginPage(Step_Def_Base contextStep) {
        // TODO Auto-generated constructor stub
        this.contextStep = contextStep; // <-- This is where pico-containers starts working
        test = contextStep.test; // <-- Linking your driver object reference from the point where it is instantiated , i.e the base foundation class
    }

    @Given("^I am on test fire login page \"([^\"]*)\"$")
    public void alotoroMutualLoginPage(String url) {

        test.launchApplication(url);
        test.altoroMutual.launchLoginLink();
        test.altoroMutual.verifyUserIsOnLoginPage();

    }

现在,您可以发挥创造力,并相应地组织页面对象。我在返回Web驱动程序对象的包装器类中聚合并实例化了所有页面对象类。您可以在代码中看到,我正在从altoroMutual对象访问test pageObject类。

确保您使用 maven 来管理所有开发人员依赖项。遵循依赖性将在您的项目中添加pico容器。

        <dependency>
             <groupId>info.cukes</groupId>
             <artifactId>cucumber-picocontainer</artifactId>
              <version>1.2.5</version>
           <scope>test</scope>
        </dependency>
        <dependency>   
            <groupId>org.picocontainer</groupId>  
             <artifactId>picocontainer</artifactId>
             <version>2.14.3</version>
        </dependency>