use of org.activityinfo.test.webdriver.WebDriverModule in project activityinfo by bedatadriven.
the class TestMain method queueUiTests.
private void queueUiTests() {
ResourceLoader loader = new MultiLoader(getClass().getClassLoader());
RuntimeOptions options = new RuntimeOptions(Arrays.asList("--tags", "@web", "classpath:org/activityinfo/test", "--glue", "org.activityinfo.test.steps.common", "--glue", "org.activityinfo.test.steps.web"));
queueFeatures("ui", loader, options, new WebDriverModule(webDriverType));
queueTestMethods("ui", new WebDriverModule(webDriverType));
}
Aggregations