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

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

The newest version!
package net.n2oapp.framework.autotest.impl.collection;

import net.n2oapp.framework.autotest.N2oSelenide;
import net.n2oapp.framework.autotest.api.collection.SearchResult;
import net.n2oapp.framework.autotest.api.component.header.SearchItem;

/**
 * Базовый класс списка с результатами поиска в шапке для автотестирования
 */
public class N2oSearchResult extends N2oComponentsCollection implements SearchResult {

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy