Java反射方法将注释字段作为SelenideElement

时间:2018-01-16 13:42:12

标签: java reflection cucumber bdd selenide

我正在使用Cucumber和Selenide进行UI测试,我有这些方法

public static void initPage(String pageName) throws Exception {
    Set<Class<?>> annotated = new Reflections(PAGES_PACKAGE).getTypesAnnotatedWith(PageTitle.class);

    for (Class classToInit : annotated) {
        PageTitle annotation = (PageTitle) classToInit.getAnnotation(PageTitle.class);
        if (annotation.name().equals(pageName)) {
            classToInit.newInstance();
            lastInitialized = substringAfter(classToInit.toString(), "class ");
            lastInitClass = classToInit;
            return;
        }
    }

    throw new AutotestError("Could not find page to init: " + pageName);
}

public static SelenideElement findElementByTitle(String elementName) throws IllegalAccessException, InstantiationException {
    Set<Field> annotated = new Reflections(lastInitialized, new FieldAnnotationsScanner()).getFieldsAnnotatedWith(ElementTitle.class);

    for (Field field : annotated) {
        ElementTitle annotation = field.getAnnotation(ElementTitle.class);
        if (annotation.name().equals(elementName)) {
            field.setAccessible(true);
            SelenideElement el = (SelenideElement) field
            return el;
        }
    }
    throw new AutotestError("Element not found: " + elementName);
}

我对反射很新,我正在尝试使用org.reflections.Reflections库来构建页面对象模式,以搜索各种页面对象类中的注释字段。但是,我遇到了从第二种方法中返回SelenideElement的问题(SelenideElement el = ...目前是完全错误的)。如何在我的测试中获得可用作SelenideElement(带@ElementTitle和@FindBy注释)的字段?提前谢谢。

2 个答案:

答案 0 :(得分:1)

你应该换行 SelenideElement el = (SelenideElement) field

SelenideElement el = ((SelenideElement) field.get(pageObject))

<强>解释

根据Field.get的文档:
返回指定对象上此Field表示的字段的值。如果对象具有基本类型,则该值自动包装在对象中。

答案 1 :(得分:0)

我修改了有问题的代码行,如下所示:

SelenideElement el = (SelenideElement) field.get(page(lastInitClass);

其中page()是com.codeborne.selenide.Selenide.page,它是Selenium pageFactory的Selenide包装器,如果我理解正确的话。