UNPKG

@nova-ui/bits

Version:

SolarWinds Nova Framework

14 lines (13 loc) 530 B
import { ElementFinder } from "protractor"; import { Atom } from "../../atom"; export declare class RadioGroupAtom extends Atom { static CSS_CLASS: string; getValue(): Promise<string>; getRadioByValue(value: string): ElementFinder; getRadioInputByValue(value: string): ElementFinder; getHelpHintText(index: number): Promise<string>; getNumberOfItems(): Promise<number>; getFirst(): ElementFinder; getNumberOfDisabledItems(): Promise<number>; isRadioSelected(value: string): Promise<boolean>; }