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

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

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

import net.n2oapp.framework.autotest.api.collection.Widgets;
import net.n2oapp.framework.autotest.api.component.widget.Widget;

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

public class N2oWidgets extends N2oComponentsCollection implements Widgets {

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

    public  T widget(Class componentClass) {
        return component(elements().first(), componentClass);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy