com.github.tamnguyenbbt.dom.GetElementRecordParam Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dom-util Show documentation
Show all versions of dom-util Show documentation
Find jsoup elements, relative xpath queries, and Selenium web elements for web service and Selenium-based Web UI testing
package com.github.tamnguyenbbt.dom;
import org.jsoup.nodes.Element;
final class GetElementRecordParam
{
protected Element anchorElement;
protected Element searchElement;
protected int searchElementIndex;
public GetElementRecordParam(Element anchorElement, Element searchElement, int searchElementIndex)
{
this.anchorElement = anchorElement;
this.searchElement = searchElement;
this.searchElementIndex = searchElementIndex;
}
}