Class UploadField

java.lang.Object
allurium.primitives.UIElement
allurium.inputs.UploadField
All Implemented Interfaces:
AlluriumElement, ListComponent, WebElementMeta

public class UploadField extends UIElement
Represents an upload field (``) in the UI, extending UIElement.

This class provides utility methods for interacting with file upload elements, allowing files to be uploaded via file paths or File objects.

Features:

  • Supports file uploads using absolute file paths or Java File objects.
  • Extends UIElement to inherit generic element interaction capabilities.

Purpose:

  • Encapsulates behavior specific to file upload fields.
  • Simplifies file upload interactions in tests.
  • Constructor Details

    • UploadField

      public UploadField()
      Default constructor. Initializes the element type as "upload_input".
    • UploadField

      public UploadField(org.openqa.selenium.By rootLocator)
      Constructor that initializes an upload field using a Selenium By locator.
      Parameters:
      rootLocator - the Selenium locator for the upload field
    • UploadField

      public UploadField(org.openqa.selenium.By rootLocator, String name)
      Constructor that initializes an upload field using a Selenium By locator and a name.
      Parameters:
      rootLocator - the Selenium locator for the upload field
      name - the name of the upload field
    • UploadField

      public UploadField(String selenideSelector)
      Constructor that initializes an upload field using a Selenide locator string.
      Parameters:
      selenideSelector - the Selenide locator as a string
    • UploadField

      public UploadField(String selenideSelector, String name)
      Constructor that initializes an upload field using a Selenide locator string and a name.
      Parameters:
      selenideSelector - the Selenide locator as a string
      name - the name of the upload field
    • UploadField

      public UploadField(com.codeborne.selenide.SelenideElement selenideElement)
      Constructor that initializes an upload field using a Selenide element.
      Parameters:
      selenideElement - the Selenide element representing the upload field
    • UploadField

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

    • $uploadField

      public static UploadField $uploadField(org.openqa.selenium.By locator)
      Creates an upload field instance using a Selenium By locator.
      Parameters:
      locator - the Selenium locator for the upload field
      Returns:
      a new UploadField instance
    • $uploadField

      public static UploadField $uploadField(org.openqa.selenium.By locator, String name)
      Creates an upload field instance using a Selenium By locator and a name.
      Parameters:
      locator - the Selenium locator for the upload field
      name - the name of the upload field
      Returns:
      a new UploadField instance
    • $uploadField

      public static UploadField $uploadField(String selenideLocator)
      Creates an upload field instance using a Selenide locator string.
      Parameters:
      selenideLocator - the Selenide locator as a string
      Returns:
      a new UploadField instance
    • $uploadField

      public static UploadField $uploadField(String selenideLocator, String name)
      Creates an upload field instance using a Selenide locator string and a name.
      Parameters:
      selenideLocator - the Selenide locator as a string
      name - the name of the upload field
      Returns:
      a new UploadField instance
    • $uploadField

      public static UploadField $uploadField(com.codeborne.selenide.SelenideElement selenideElement)
      Creates an upload field instance using a Selenide element.
      Parameters:
      selenideElement - the Selenide element representing the upload field
      Returns:
      a new UploadField instance
    • $uploadField

      public static UploadField $uploadField(com.codeborne.selenide.SelenideElement selenideElement, String name)
      Creates an upload field instance using a Selenide element and a name.
      Parameters:
      selenideElement - the Selenide element representing the upload field
      name - the name of the upload field
      Returns:
      a new UploadField instance
    • _$uploadField

      public static UploadField _$uploadField(String xpath)
      Creates an upload field instance using an XPath string.
      Parameters:
      xpath - the XPath string for the upload field
      Returns:
      a new UploadField instance
    • uploadFile

      public void uploadFile(String filePath)
      Uploads a file to the upload field using an absolute file path.

      Step: Processed by Aspect

      Parameters:
      filePath - the absolute path to the file
    • uploadFile

      public void uploadFile(File file)
      Uploads a file to the upload field using a File object.
      Parameters:
      file - the File object to upload