/** * 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 } from '@utam/core'; import _PrimitiveTypePicklist from 'salesforce-pageobjects/runtime_copilot_base/pageObjects/primitiveTypePicklist'; /** * A base card component that serves as a foundational element for more complex components, utilizing native shadow DOM encapsulation and custom styles. * Selector: runtime_copilot_base-single-select-time * generated from JSON dist/runtime_copilot_base/singleSelectTime.utam.json * @version 2026-03-09T13:56:37.335Z * @author Salesforce */ export default class SingleSelectTime extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Retrieve the label of a radio button * @return string * @param index element index starting from 1 */ getRadioOptionLabel(index: number): Promise; /** * Check that the radio group is present and visible * @return boolean */ isRadioGroupVisible(): Promise; /** * Returns true if element "optionLabel" present on the page * @return boolean * @param index element index starting from 1 */ verifyOptionLabelPresence(index: number): Promise; /** * Represents all radio buttons in the group */ getRadioOptions(): Promise<_PrimitiveTypePicklist[]>; /** * Represents all radio buttons in the group * @param index element index starting from 1 */ getRadioOptionByIndex(index: number): Promise<(_BaseUtamElement)>; }