Class TextArea

All Implemented Interfaces:
AlluriumElement, InputElement, ListComponent, TextInputAsserts, WebElementMeta, Writable
Direct Known Subclasses:
AbstractRequiredTextArea

public class TextArea extends TextField
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.
  • 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 Selenium By locator.
      Parameters:
      rootLocator - the Selenium locator for the text area
    • TextArea

      public TextArea(org.openqa.selenium.By rootLocator, String name)
      Constructor that initializes a text area using a Selenium By locator and a name.
      Parameters:
      rootLocator - the Selenium locator for the text area
      name - the name of the text area
    • TextArea

      public TextArea(String selenideLocator)
      Constructor that initializes a text area using a Selenide locator string.
      Parameters:
      selenideLocator - the Selenide locator as a string
    • TextArea

      public TextArea(String selenideLocator, String name)
      Constructor that initializes a text area using a Selenide locator string and a name.
      Parameters:
      selenideLocator - the Selenide locator as a string
      name - 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

      public TextArea(com.codeborne.selenide.SelenideElement selenideElement, String name)
      Constructor that initializes a text area using a Selenide element and a name.
      Parameters:
      selenideElement - the Selenide element representing the text area
      name - the name of the text area
  • Method Details

    • $textArea

      public static TextArea $textArea(org.openqa.selenium.By locator)
      Creates a text area instance using a Selenium By locator.
      Parameters:
      locator - the Selenium locator for the text area
      Returns:
      a new TextArea instance
    • $textArea

      public static TextArea $textArea(org.openqa.selenium.By locator, String name)
      Creates a text area instance using a Selenium By locator and a name.
      Parameters:
      locator - the Selenium locator for the text area
      name - the name of the text area
      Returns:
      a new TextArea instance
    • $textArea

      public static TextArea $textArea(String selenideLocator)
      Creates a text area instance using a Selenide locator string.
      Parameters:
      selenideLocator - the Selenide locator as a string
      Returns:
      a new TextArea instance
    • $textArea

      public static TextArea $textArea(String selenideLocator, String name)
      Creates a text area instance using a Selenide locator string and a name.
      Parameters:
      selenideLocator - the Selenide locator as a string
      name - the name of the text area
      Returns:
      a new TextArea instance
    • $textArea

      public static TextArea $textArea(com.codeborne.selenide.SelenideElement selenideElement)
      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 area
      name - the name of the text area
      Returns:
      a new TextArea instance
    • _$textArea

      public static TextArea _$textArea(String xpath)
      Creates a text area instance using an XPath string.
      Parameters:
      xpath - the XPath string for the text area
      Returns:
      a new TextArea instance