在我的情况下,我很难理解和利用依赖注入。我想使用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容器)。我不知道该怎么做,而且我已经在网上学习过,我无法将我那可怜的大脑包裹在这一切上。
答案 0 :(得分:3)
您可能对我的博客文章感兴趣,其中我使用Pico容器在两个不同的Cucumber-JVM步骤类http://www.thinkcode.se/blog/2017/04/01/sharing-state-between-steps-in-cucumberjvm-using-picocontainer
之间共享状态答案 1 :(得分:2)
您可能无法实现继承,但可以在步骤定义类中使用构造函数从一个类传递驱动程序对象引用到另一个。
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();
}
}
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>