/** * Copyright (c) 2025, Salesforce, Inc. * All rights reserved. * For full license text, see the LICENSE file or https://utam.dev/salesforce/license */ import { Driver as _Driver, Element as _Element, Locator as _Locator, BaseUtamElement as _BaseUtamElement, UtamBasePageObject as _UtamBasePageObject, ActionableUtamElement as _ActionableUtamElement, ClickableUtamElement as _ClickableUtamElement } from '@utam/core'; /** * Component representing a radio button input with optional help message, allowing for selection and triggering of associated events. * Selector: lightning-primitive-input-radio * generated from JSON dist/lightning/primitiveInputRadio.utam.json * @version 2026-03-09T13:56:36.197Z * @author Salesforce */ export default class PrimitiveInputRadio extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Selects or deselects the radio button */ selectRadio(): Promise; /** * Returns whether the radio input is checked * @return boolean */ checkRadioSelection(): Promise; /** * Focuses on the radio button */ focusOnRadio(): Promise; /** * Removes focus from the radio button */ blurRadio(): Promise; /** * Returns the help message text * @return string */ verifyHelpText(): Promise; /** * Checks if the radio button is focused * @return boolean */ isRadioFocused(): Promise; /** * Represents the radio button input for selection. */ getRadioInput(): Promise<(_BaseUtamElement & _ActionableUtamElement & _ClickableUtamElement)>; /** * Represents the help message associated with the radio button. */ getHelpText(): Promise<(_BaseUtamElement)>; /** * Represents the label for the radio button. */ getRadioLabel(): Promise<(_BaseUtamElement)>; }