All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.almis.awe.testing.selenium.InstructionsFactory Maven / Gradle / Ivy

There is a newer version: 4.9.0
Show newest version
package com.almis.awe.testing.selenium;

import com.almis.awe.testing.model.types.FrontendType;

public class InstructionsFactory {
  private InstructionsFactory() {}
  public static IAweFrontEndInstructions getInstance(FrontendType type) {
    switch (type) {
      case REACT:
        return new ReactAweInstructions();
      case ANGULAR:
      default:
        return new AngularAweInstructions();
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy