com.github.tamnguyenbbt.dom.DomUtilConfig 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 java.util.ArrayList;
import java.util.List;
public class DomUtilConfig
{
public int webDriverTimeoutInMilliseconds;
public XpathBuildMethod xpathBuildMethod;
public List xpathBuildOptions;
public DomUtilConfig()
{
xpathBuildMethod = XpathBuildMethod.ContainText;
xpathBuildOptions = new ArrayList<>();
xpathBuildOptions.add(XpathBuildOption.AttachId);
xpathBuildOptions.add(XpathBuildOption.AttachName);
xpathBuildOptions.add(XpathBuildOption.IncludeTagIndex);
webDriverTimeoutInMilliseconds = 2000;
}
}