com.github.tamnguyenbbt.dom.Condition 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;
public class Condition
{
public boolean whereIgnoreCaseForOwnText;
public boolean whereOwnTextContainingPattern;
public boolean whereIncludingTabsAndSpacesForOwnText;
public Condition()
{
}
public Condition(boolean whereIgnoreCaseForOwnText, boolean whereOwnTextContainingPattern, boolean whereIncludingTabsAndSpacesForOwnText)
{
this.whereIgnoreCaseForOwnText = whereIgnoreCaseForOwnText;
this.whereOwnTextContainingPattern = whereOwnTextContainingPattern;
this.whereIncludingTabsAndSpacesForOwnText = whereIncludingTabsAndSpacesForOwnText;
}
}