Class CheckBox

All Implemented Interfaces:
AlluriumElement, InputElement, ListComponent, WebElementMeta

public class CheckBox extends AbstractInputElement
Represents a checkbox element in the UI, extending UIElement.

This class provides methods to interact with and validate the state of checkboxes. It supports toggling the checkbox on/off and asserting its state. A proxy element can also be used for cases where the checkbox itself is not directly interactable.

Features:

  • Check and uncheck functionality.
  • State verification (checked/unchecked).
  • Proxy element support for inaccessible checkboxes.

Purpose:

  • Encapsulates behavior specific to checkbox elements.
  • Simplifies interactions and state validations for checkboxes.
  • Constructor Details

    • CheckBox

      public CheckBox()
      Default constructor. Initializes the element type as "checkbox".
    • CheckBox

      public CheckBox(com.codeborne.selenide.SelenideElement selenideElement)
      Constructor that initializes a checkbox using a Selenide element.
      Parameters:
      selenideElement - the Selenide element representing the checkbox
    • CheckBox

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

      public CheckBox(String selenideLocator, String name)
      Constructor that initializes a checkbox using a Selenide locator string and a name.
      Parameters:
      selenideLocator - the Selenide locator as a string
      name - the name of the checkbox
    • CheckBox

      public CheckBox(org.openqa.selenium.By locator)
      Constructor that initializes a checkbox using a Selenium By locator.
      Parameters:
      locator - the Selenium locator for the checkbox
    • CheckBox

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

      public CheckBox(com.codeborne.selenide.SelenideElement selenideElement, String name)
      Constructor that initializes a checkbox using a Selenide element and a name.
      Parameters:
      selenideElement - the Selenide element representing the checkbox
      name - the name of the checkbox
    • CheckBox

      public CheckBox(org.openqa.selenium.By checkBoxLocator, org.openqa.selenium.By proxyElementLocator)
      Constructor that initializes a checkbox using a main locator and a proxy locator.
      Parameters:
      checkBoxLocator - the main locator for the checkbox
      proxyElementLocator - the locator for the proxy element
  • Method Details

    • $checkbox

      public static CheckBox $checkbox(org.openqa.selenium.By locator)
    • $checkbox

      public static CheckBox $checkbox(org.openqa.selenium.By locator, String name)
    • $checkbox

      public static CheckBox $checkbox(com.codeborne.selenide.SelenideElement selenideElement)
    • $checkbox

      public static CheckBox $checkbox(com.codeborne.selenide.SelenideElement selenideElement, String name)
    • $checkbox

      public static CheckBox $checkbox(String selenideLocator)
    • _$checkbox

      public static CheckBox _$checkbox(String xpath)
    • isChecked

      public boolean isChecked()
      Checks if the checkbox is currently selected.
      Returns:
      true if the checkbox is selected, false otherwise
    • check

      public void check()
      Toggles the checkbox to the checked state.

      Step: Processed by Aspect

    • uncheck

      public void uncheck()
      Toggles the checkbox to the unchecked state.

      Step: Processed by Aspect

    • set

      public void set(boolean state)
      Sets the checkbox to the specified state.
      Parameters:
      state - true to check the checkbox, false to uncheck it
    • assertChecked

      public void assertChecked()
      Asserts that the checkbox is currently checked.

      Step: Processed by Aspect

    • assertUnchecked

      public void assertUnchecked()
      Asserts that the checkbox is currently unchecked.

      Step: Processed by Aspect