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

net.n2oapp.framework.autotest.impl.collection.N2oFieldSets Maven / Gradle / Ivy

package net.n2oapp.framework.autotest.impl.collection;

import net.n2oapp.framework.autotest.api.collection.FieldSets;
import net.n2oapp.framework.autotest.api.component.fieldset.FieldSet;
import net.n2oapp.framework.autotest.api.component.fieldset.SimpleFieldSet;

import static net.n2oapp.framework.autotest.N2oSelenide.component;

/**
 * Филдсеты для автотестирования
 */
public class N2oFieldSets extends N2oComponentsCollection implements FieldSets {

    @Override
    public SimpleFieldSet fieldset(int index) {
        return fieldset(index, SimpleFieldSet.class);
    }

    @Override
    public  T fieldset(Class componentClass) {
        return fieldset(0, componentClass);
    }

    @Override
    public  T fieldset(int index, Class componentClass) {
        return component(elements().get(index), componentClass);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy