com.epam.jdi.light.ui.html.asserts.TextAreaAssert Maven / Gradle / Ivy
package com.epam.jdi.light.ui.html.asserts;
import com.epam.jdi.light.asserts.generic.ITextAssert;
import com.epam.jdi.light.asserts.generic.UIAssert;
import com.epam.jdi.light.common.JDIAction;
import com.epam.jdi.light.ui.html.elements.common.TextArea;
import org.hamcrest.Matcher;
import org.hamcrest.Matchers;
import java.util.List;
import static com.epam.jdi.light.asserts.core.SoftAssert.jdiAssert;
import static org.hamcrest.Matchers.containsInAnyOrder;
/**
* Created by Roman Iovlev on 14.02.2018
* Email: [email protected]; Skype: roman.iovlev
*/
public class TextAreaAssert extends UIAssert implements ITextAssert {
@JDIAction("Assert that '{name}' text {0}")
public TextAreaAssert text(Matcher condition) {
jdiAssert(element().getText(), condition);
return this;
}
@JDIAction("Assert that '{name}' rows count {0}")
public TextAreaAssert rowsCount(Matcher condition) {
jdiAssert(element().rows(), condition);
return this;
}
public TextAreaAssert rowsCount(int rowsCount) { return rowsCount(Matchers.is(rowsCount)); }
@JDIAction("Assert that '{name}' columns count {0}")
public TextAreaAssert colsCount(Matcher condition) {
jdiAssert(element().cols(), condition);
return this;
}
public TextAreaAssert colsCount(int colsCount) { return colsCount(Matchers.is(colsCount)); }
@JDIAction("Assert that '{name}' minlength {0}")
public TextAreaAssert minlength(Matcher condition) {
jdiAssert(element().minlength(), condition);
return this;
}
public TextAreaAssert minlength(int minlength) { return minlength(Matchers.is(minlength)); }
@JDIAction("Assert that '{name}' maxlength {0}")
public TextAreaAssert maxlength(Matcher condition) {
jdiAssert(element().maxlength(), condition);
return this;
}
public TextAreaAssert maxlength(int maxlength) { return maxlength(Matchers.is(maxlength)); }
@JDIAction("Assert that '{name}' has lines {0}")
public TextAreaAssert lines(Matcher super List> condition) {
jdiAssert(element().getLines(), condition);
return this;
}
@JDIAction("Assert that '{name}' has lines: {0}")
public TextAreaAssert lines(String... lines) {
return lines(containsInAnyOrder(lines));
}
@JDIAction("Assert that '{name}' has lines: {0}")
public TextAreaAssert lines(List lines) {
return lines(containsInAnyOrder(lines.toArray()));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy