Package allurium.inputs
Class TextArea
java.lang.Object
allurium.primitives.UIElement
allurium.inputs.AbstractInputElement
allurium.inputs.TextField
allurium.inputs.TextArea
- All Implemented Interfaces:
AlluriumElement
,InputElement
,ListComponent
,TextInputAsserts
,WebElementMeta
,Writable
- Direct Known Subclasses:
AbstractRequiredTextArea
Represents a text area (``) element in the UI, extending
TextField
.
This class provides wrapper functionality for managing text area elements and logging each action
as a step in Allure reports. It inherits most of its functionality from the TextField
class.
Features:
- Typing and clearing text in a text area field.
- Assertions for input values, including checks for emptiness or specific values.
- All actions are logged as Allure steps for enhanced reporting.
Example Usage:
<html>
<textarea>lorem ipsum</textarea>
</html>
TextArea textArea = new TextArea("textarea");
textArea.write("Hello World");
textArea.clear();
Purpose:
- Encapsulates text area-specific behavior.
- Provides utility methods for convenient interaction with text area elements in tests.
-
Field Summary
Fields inherited from class allurium.primitives.UIElement
assignNameMethod, description, id, parent, root, stepsConsoleLoggingEnabled, stepsReportLoggingEnabled, uiElementName, uiElementType
-
Constructor Summary
ConstructorsConstructorDescriptionTextArea()
Default constructor.TextArea
(com.codeborne.selenide.SelenideElement selenideElement) Constructor that initializes a text area using a Selenide element.Constructor that initializes a text area using a Selenide element and a name.Constructor that initializes a text area using a Selenide locator string.Constructor that initializes a text area using a Selenide locator string and a name.TextArea
(org.openqa.selenium.By rootLocator) Constructor that initializes a text area using a SeleniumBy
locator.Constructor that initializes a text area using a SeleniumBy
locator and a name. -
Method Summary
Modifier and TypeMethodDescriptionstatic TextArea
_$textArea
(String xpath) Creates a text area instance using an XPath string.static TextArea
$textArea
(com.codeborne.selenide.SelenideElement selenideElement) Creates a text area instance using a Selenide element.static TextArea
Creates a text area instance using a Selenide element and a name.static TextArea
Creates a text area instance using a Selenide locator string.static TextArea
Creates a text area instance using a Selenide locator string and a name.static TextArea
$textArea
(org.openqa.selenium.By locator) Creates a text area instance using a SeleniumBy
locator.static TextArea
Creates a text area instance using a SeleniumBy
locator and a name.Methods inherited from class allurium.inputs.TextField
_$textField, $textField, $textField, $textField, $textField, $textField, $textField, assertCurrentValue, assertCurrentValueContains, assertEmpty, assertNotEmpty, clear, clearAndWrite, getId, pressEnter, value, write
Methods inherited from class allurium.inputs.AbstractInputElement
assertDisabled, assertEnabled, isDisabled
Methods inherited from class allurium.primitives.UIElement
_$uiElement, $uiElement, $uiElement, $uiElement, $uiElement, $uiElement, $uiElement, applyName, applyName, as, assertEquals, assertExists, assertExists, assertHasCssClass, assertHasCssClass, assertHasNotCssClass, assertHasNotCssClass, assertHasNotCssClass, assertHasText, assertIsNotEmpty, assertNotExist, assertNotExist, assertNotVisible, assertNotVisible, assertNotVisible, assertText, assertVisible, assertVisible, assertVisible, assertVisible, assertVisibleInViewport, click, click, click, click, click, clickAndHold, clickAndHold, clickAndHold, contextClick, contextClick, contextClick, doubleClick, doubleClick, doubleClick, get, getAllureCompiledStep, getAttribute, getHeight, getStepText, getUiElementName, getWidth, hover, hover, hover, isDisplayed, logStep, logStepToReport, logStepToReport, scrollTo, scrollTo, scrollTo, setRoot, setRoot, text, verifyEmpty, verifyIsNotEmpty, wrappedName
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface allurium.interfaces.AlluriumElement
getRoot
Methods inherited from interface allurium.interfaces.WebElementMeta
getDescription, getMetaKeys, getParent, setAssignNameMethod, setDescription, setParent, setUiElementName
-
Constructor Details
-
TextArea
public TextArea()Default constructor. Initializes the element type as "textarea". -
TextArea
public TextArea(org.openqa.selenium.By rootLocator) Constructor that initializes a text area using a SeleniumBy
locator.- Parameters:
rootLocator
- the Selenium locator for the text area
-
TextArea
Constructor that initializes a text area using a SeleniumBy
locator and a name.- Parameters:
rootLocator
- the Selenium locator for the text areaname
- the name of the text area
-
TextArea
Constructor that initializes a text area using a Selenide locator string.- Parameters:
selenideLocator
- the Selenide locator as a string
-
TextArea
Constructor that initializes a text area using a Selenide locator string and a name.- Parameters:
selenideLocator
- the Selenide locator as a stringname
- the name of the text area
-
TextArea
public TextArea(com.codeborne.selenide.SelenideElement selenideElement) Constructor that initializes a text area using a Selenide element.- Parameters:
selenideElement
- the Selenide element representing the text area
-
TextArea
Constructor that initializes a text area using a Selenide element and a name.- Parameters:
selenideElement
- the Selenide element representing the text areaname
- the name of the text area
-
-
Method Details
-
$textArea
Creates a text area instance using a SeleniumBy
locator.- Parameters:
locator
- the Selenium locator for the text area- Returns:
- a new
TextArea
instance
-
$textArea
Creates a text area instance using a SeleniumBy
locator and a name.- Parameters:
locator
- the Selenium locator for the text areaname
- the name of the text area- Returns:
- a new
TextArea
instance
-
$textArea
Creates a text area instance using a Selenide locator string.- Parameters:
selenideLocator
- the Selenide locator as a string- Returns:
- a new
TextArea
instance
-
$textArea
Creates a text area instance using a Selenide locator string and a name.- Parameters:
selenideLocator
- the Selenide locator as a stringname
- the name of the text area- Returns:
- a new
TextArea
instance
-
$textArea
Creates a text area instance using a Selenide element.- Parameters:
selenideElement
- the Selenide element representing the text area- Returns:
- a new
TextArea
instance
-
$textArea
public static TextArea $textArea(com.codeborne.selenide.SelenideElement selenideElement, String name) Creates a text area instance using a Selenide element and a name.- Parameters:
selenideElement
- the Selenide element representing the text areaname
- the name of the text area- Returns:
- a new
TextArea
instance
-
_$textArea
Creates a text area instance using an XPath string.- Parameters:
xpath
- the XPath string for the text area- Returns:
- a new
TextArea
instance
-