Class RadioButton

All Implemented Interfaces:
AlluriumElement, InputElement, ListComponent, WebElementMeta

public class RadioButton extends AbstractInputElement
Represents a radio button input field in the UI, extending AbstractInputElement.

This class encapsulates the behavior and interactions specific to radio button elements, providing utility methods for initialization and handling through locators or pre-existing SelenideElement instances.

Features:

  • Encapsulates radio button behavior in the UI.
  • Supports multiple initialization options (locators, Selenide elements, etc.).
  • Integration-ready with Allure for enhanced reporting.

Usage Example:


 // Using a CSS selector
 RadioButton radioButton = new RadioButton("#radio1");
 radioButton.assertEnabled();

 // Using a Selenium By locator
 RadioButton radioButtonBy = $radioButton(By.id("radio1"));
 radioButtonBy.assertDisabled();
 

Purpose:

  • Standardizes interactions with radio button elements.
  • Provides a consistent API for testing radio button inputs.
  • Constructor Details

    • RadioButton

      public RadioButton()
      Default constructor. Initializes the element type as "radiobutton".
    • RadioButton

      public RadioButton(String selenideLocator)
      Initializes a radio button using a Selenide locator string.
      Parameters:
      selenideLocator - the Selenide locator as a string
    • RadioButton

      public RadioButton(String selenideLocator, String name)
      Initializes a radio button using a Selenide locator string and a name.
      Parameters:
      selenideLocator - the Selenide locator as a string
      name - the name of the radio button
    • RadioButton

      public RadioButton(org.openqa.selenium.By locator)
      Initializes a radio button using a Selenium By locator.
      Parameters:
      locator - the Selenium locator for the radio button
    • RadioButton

      public RadioButton(org.openqa.selenium.By locator, String name)
      Initializes a radio button using a Selenium By locator and a name.
      Parameters:
      locator - the Selenium locator for the radio button
      name - the name of the radio button
    • RadioButton

      public RadioButton(com.codeborne.selenide.SelenideElement selenideElement)
      Initializes a radio button using a SelenideElement.
      Parameters:
      selenideElement - the Selenide element representing the radio button
    • RadioButton

      public RadioButton(com.codeborne.selenide.SelenideElement selenideElement, String name)
      Initializes a radio button using a SelenideElement and a name.
      Parameters:
      selenideElement - the Selenide element representing the radio button
      name - the name of the radio button
  • Method Details

    • $radioButton

      public static RadioButton $radioButton(org.openqa.selenium.By locator)
    • $radioButton

      public static RadioButton $radioButton(com.codeborne.selenide.SelenideElement selenideElement)
    • $radioButton

      public static RadioButton $radioButton(String selenideLocator)
    • $radioButton

      public static RadioButton $radioButton(com.codeborne.selenide.SelenideElement selenideElement, String name)
    • $radioButton

      public static RadioButton $radioButton(org.openqa.selenium.By locator, String name)
    • $radioButton

      public static RadioButton $radioButton(String selenideLocator, String name)
    • _$radioButton

      public static RadioButton _$radioButton(String xpath)