import { ElementWrapper } from '@awsui/test-utils-core/selectors'; export { ElementWrapper }; import AlertWrapper from './alert'; import AnchorNavigationWrapper from './anchor-navigation'; import AnnotationWrapper from './annotation'; import AppLayoutWrapper from './app-layout'; import AppLayoutToolbarWrapper from './app-layout-toolbar'; import AreaChartWrapper from './area-chart'; import AttributeEditorWrapper from './attribute-editor'; import AutosuggestWrapper from './autosuggest'; import BadgeWrapper from './badge'; import BarChartWrapper from './bar-chart'; import BoxWrapper from './box'; import BreadcrumbGroupWrapper from './breadcrumb-group'; import ButtonWrapper from './button'; import ButtonDropdownWrapper from './button-dropdown'; import ButtonGroupWrapper from './button-group'; import CalendarWrapper from './calendar'; import CardsWrapper from './cards'; import CheckboxWrapper from './checkbox'; import CodeEditorWrapper from './code-editor'; import CollectionPreferencesWrapper from './collection-preferences'; import ColumnLayoutWrapper from './column-layout'; import ContainerWrapper from './container'; import ContentLayoutWrapper from './content-layout'; import CopyToClipboardWrapper from './copy-to-clipboard'; import DateInputWrapper from './date-input'; import DatePickerWrapper from './date-picker'; import DateRangePickerWrapper from './date-range-picker'; import DrawerWrapper from './drawer'; import ExpandableSectionWrapper from './expandable-section'; import FileDropzoneWrapper from './file-dropzone'; import FileInputWrapper from './file-input'; import FileTokenGroupWrapper from './file-token-group'; import FileUploadWrapper from './file-upload'; import FlashbarWrapper from './flashbar'; import FormWrapper from './form'; import FormFieldWrapper from './form-field'; import GridWrapper from './grid'; import HeaderWrapper from './header'; import HelpPanelWrapper from './help-panel'; import HotspotWrapper from './hotspot'; import IconWrapper from './icon'; import InputWrapper from './input'; import KeyValuePairsWrapper from './key-value-pairs'; import LineChartWrapper from './line-chart'; import LinkWrapper from './link'; import ListWrapper from './list'; import LiveRegionWrapper from './live-region'; import MixedLineBarChartWrapper from './mixed-line-bar-chart'; import ModalWrapper from './modal'; import MultiselectWrapper from './multiselect'; import NavigableGroupWrapper from './navigable-group'; import PaginationWrapper from './pagination'; import PieChartWrapper from './pie-chart'; import PopoverWrapper from './popover'; import ProgressBarWrapper from './progress-bar'; import PromptInputWrapper from './prompt-input'; import PropertyFilterWrapper from './property-filter'; import RadioButtonWrapper from './radio-button'; import RadioGroupWrapper from './radio-group'; import S3ResourceSelectorWrapper from './s3-resource-selector'; import SegmentedControlWrapper from './segmented-control'; import SelectWrapper from './select'; import SideNavigationWrapper from './side-navigation'; import SliderWrapper from './slider'; import SpaceBetweenWrapper from './space-between'; import SpinnerWrapper from './spinner'; import SplitPanelWrapper from './split-panel'; import StatusIndicatorWrapper from './status-indicator'; import StepsWrapper from './steps'; import TableWrapper from './table'; import TabsWrapper from './tabs'; import TagEditorWrapper from './tag-editor'; import TextContentWrapper from './text-content'; import TextFilterWrapper from './text-filter'; import TextareaWrapper from './textarea'; import TilesWrapper from './tiles'; import TimeInputWrapper from './time-input'; import ToggleWrapper from './toggle'; import ToggleButtonWrapper from './toggle-button'; import TokenWrapper from './token'; import TokenGroupWrapper from './token-group'; import TopNavigationWrapper from './top-navigation'; import TreeViewWrapper from './tree-view'; import TutorialPanelWrapper from './tutorial-panel'; import WizardWrapper from './wizard'; export { AlertWrapper }; export { AnchorNavigationWrapper }; export { AnnotationWrapper }; export { AppLayoutWrapper }; export { AppLayoutToolbarWrapper }; export { AreaChartWrapper }; export { AttributeEditorWrapper }; export { AutosuggestWrapper }; export { BadgeWrapper }; export { BarChartWrapper }; export { BoxWrapper }; export { BreadcrumbGroupWrapper }; export { ButtonWrapper }; export { ButtonDropdownWrapper }; export { ButtonGroupWrapper }; export { CalendarWrapper }; export { CardsWrapper }; export { CheckboxWrapper }; export { CodeEditorWrapper }; export { CollectionPreferencesWrapper }; export { ColumnLayoutWrapper }; export { ContainerWrapper }; export { ContentLayoutWrapper }; export { CopyToClipboardWrapper }; export { DateInputWrapper }; export { DatePickerWrapper }; export { DateRangePickerWrapper }; export { DrawerWrapper }; export { ExpandableSectionWrapper }; export { FileDropzoneWrapper }; export { FileInputWrapper }; export { FileTokenGroupWrapper }; export { FileUploadWrapper }; export { FlashbarWrapper }; export { FormWrapper }; export { FormFieldWrapper }; export { GridWrapper }; export { HeaderWrapper }; export { HelpPanelWrapper }; export { HotspotWrapper }; export { IconWrapper }; export { InputWrapper }; export { KeyValuePairsWrapper }; export { LineChartWrapper }; export { LinkWrapper }; export { ListWrapper }; export { LiveRegionWrapper }; export { MixedLineBarChartWrapper }; export { ModalWrapper }; export { MultiselectWrapper }; export { NavigableGroupWrapper }; export { PaginationWrapper }; export { PieChartWrapper }; export { PopoverWrapper }; export { ProgressBarWrapper }; export { PromptInputWrapper }; export { PropertyFilterWrapper }; export { RadioButtonWrapper }; export { RadioGroupWrapper }; export { S3ResourceSelectorWrapper }; export { SegmentedControlWrapper }; export { SelectWrapper }; export { SideNavigationWrapper }; export { SliderWrapper }; export { SpaceBetweenWrapper }; export { SpinnerWrapper }; export { SplitPanelWrapper }; export { StatusIndicatorWrapper }; export { StepsWrapper }; export { TableWrapper }; export { TabsWrapper }; export { TagEditorWrapper }; export { TextContentWrapper }; export { TextFilterWrapper }; export { TextareaWrapper }; export { TilesWrapper }; export { TimeInputWrapper }; export { ToggleWrapper }; export { ToggleButtonWrapper }; export { TokenWrapper }; export { TokenGroupWrapper }; export { TopNavigationWrapper }; export { TreeViewWrapper }; export { TutorialPanelWrapper }; export { WizardWrapper }; declare module '@awsui/test-utils-core/dist/selectors' { interface ElementWrapper { /** * Returns a wrapper that matches the Alerts with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches Alerts. * * @param {string} [selector] CSS Selector * @returns {AlertWrapper} */ findAlert(selector?: string): AlertWrapper; /** * Returns a multi-element wrapper that matches Alerts with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches Alerts. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllAlerts(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the AnchorNavigations with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches AnchorNavigations. * * @param {string} [selector] CSS Selector * @returns {AnchorNavigationWrapper} */ findAnchorNavigation(selector?: string): AnchorNavigationWrapper; /** * Returns a multi-element wrapper that matches AnchorNavigations with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches AnchorNavigations. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllAnchorNavigations(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the Annotations with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches Annotations. * * @param {string} [selector] CSS Selector * @returns {AnnotationWrapper} */ findAnnotation(selector?: string): AnnotationWrapper; /** * Returns a multi-element wrapper that matches Annotations with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches Annotations. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllAnnotations(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the AppLayouts with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches AppLayouts. * * @param {string} [selector] CSS Selector * @returns {AppLayoutWrapper} */ findAppLayout(selector?: string): AppLayoutWrapper; /** * Returns a multi-element wrapper that matches AppLayouts with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches AppLayouts. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllAppLayouts(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the AppLayoutToolbars with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches AppLayoutToolbars. * * @param {string} [selector] CSS Selector * @returns {AppLayoutToolbarWrapper} */ findAppLayoutToolbar(selector?: string): AppLayoutToolbarWrapper; /** * Returns a multi-element wrapper that matches AppLayoutToolbars with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches AppLayoutToolbars. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllAppLayoutToolbars(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the AreaCharts with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches AreaCharts. * * @param {string} [selector] CSS Selector * @returns {AreaChartWrapper} */ findAreaChart(selector?: string): AreaChartWrapper; /** * Returns a multi-element wrapper that matches AreaCharts with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches AreaCharts. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllAreaCharts(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the AttributeEditors with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches AttributeEditors. * * @param {string} [selector] CSS Selector * @returns {AttributeEditorWrapper} */ findAttributeEditor(selector?: string): AttributeEditorWrapper; /** * Returns a multi-element wrapper that matches AttributeEditors with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches AttributeEditors. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllAttributeEditors(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the Autosuggests with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches Autosuggests. * * @param {string} [selector] CSS Selector * @returns {AutosuggestWrapper} */ findAutosuggest(selector?: string): AutosuggestWrapper; /** * Returns a multi-element wrapper that matches Autosuggests with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches Autosuggests. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllAutosuggests(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the Badges with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches Badges. * * @param {string} [selector] CSS Selector * @returns {BadgeWrapper} */ findBadge(selector?: string): BadgeWrapper; /** * Returns a multi-element wrapper that matches Badges with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches Badges. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllBadges(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the BarCharts with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches BarCharts. * * @param {string} [selector] CSS Selector * @returns {BarChartWrapper} */ findBarChart(selector?: string): BarChartWrapper; /** * Returns a multi-element wrapper that matches BarCharts with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches BarCharts. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllBarCharts(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the Boxes with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches Boxes. * * @param {string} [selector] CSS Selector * @returns {BoxWrapper} */ findBox(selector?: string): BoxWrapper; /** * Returns a multi-element wrapper that matches Boxes with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches Boxes. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllBoxes(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the BreadcrumbGroups with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches BreadcrumbGroups. * * @param {string} [selector] CSS Selector * @returns {BreadcrumbGroupWrapper} */ findBreadcrumbGroup(selector?: string): BreadcrumbGroupWrapper; /** * Returns a multi-element wrapper that matches BreadcrumbGroups with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches BreadcrumbGroups. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllBreadcrumbGroups(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the Buttons with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches Buttons. * * @param {string} [selector] CSS Selector * @returns {ButtonWrapper} */ findButton(selector?: string): ButtonWrapper; /** * Returns a multi-element wrapper that matches Buttons with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches Buttons. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllButtons(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the ButtonDropdowns with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches ButtonDropdowns. * * @param {string} [selector] CSS Selector * @returns {ButtonDropdownWrapper} */ findButtonDropdown(selector?: string): ButtonDropdownWrapper; /** * Returns a multi-element wrapper that matches ButtonDropdowns with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches ButtonDropdowns. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllButtonDropdowns(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the ButtonGroups with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches ButtonGroups. * * @param {string} [selector] CSS Selector * @returns {ButtonGroupWrapper} */ findButtonGroup(selector?: string): ButtonGroupWrapper; /** * Returns a multi-element wrapper that matches ButtonGroups with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches ButtonGroups. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllButtonGroups(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the Calendars with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches Calendars. * * @param {string} [selector] CSS Selector * @returns {CalendarWrapper} */ findCalendar(selector?: string): CalendarWrapper; /** * Returns a multi-element wrapper that matches Calendars with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches Calendars. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllCalendars(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the Cards with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches Cards. * * @param {string} [selector] CSS Selector * @returns {CardsWrapper} */ findCards(selector?: string): CardsWrapper; /** * Returns a multi-element wrapper that matches Cards with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches Cards. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllCards(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the Checkboxes with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches Checkboxes. * * @param {string} [selector] CSS Selector * @returns {CheckboxWrapper} */ findCheckbox(selector?: string): CheckboxWrapper; /** * Returns a multi-element wrapper that matches Checkboxes with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches Checkboxes. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllCheckboxes(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the CodeEditors with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches CodeEditors. * * @param {string} [selector] CSS Selector * @returns {CodeEditorWrapper} */ findCodeEditor(selector?: string): CodeEditorWrapper; /** * Returns a multi-element wrapper that matches CodeEditors with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches CodeEditors. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllCodeEditors(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the CollectionPreferences with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches CollectionPreferences. * * @param {string} [selector] CSS Selector * @returns {CollectionPreferencesWrapper} */ findCollectionPreferences(selector?: string): CollectionPreferencesWrapper; /** * Returns a multi-element wrapper that matches CollectionPreferences with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches CollectionPreferences. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllCollectionPreferences(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the ColumnLayouts with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches ColumnLayouts. * * @param {string} [selector] CSS Selector * @returns {ColumnLayoutWrapper} */ findColumnLayout(selector?: string): ColumnLayoutWrapper; /** * Returns a multi-element wrapper that matches ColumnLayouts with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches ColumnLayouts. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllColumnLayouts(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the Containers with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches Containers. * * @param {string} [selector] CSS Selector * @returns {ContainerWrapper} */ findContainer(selector?: string): ContainerWrapper; /** * Returns a multi-element wrapper that matches Containers with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches Containers. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllContainers(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the ContentLayouts with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches ContentLayouts. * * @param {string} [selector] CSS Selector * @returns {ContentLayoutWrapper} */ findContentLayout(selector?: string): ContentLayoutWrapper; /** * Returns a multi-element wrapper that matches ContentLayouts with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches ContentLayouts. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllContentLayouts(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the CopyToClipboards with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches CopyToClipboards. * * @param {string} [selector] CSS Selector * @returns {CopyToClipboardWrapper} */ findCopyToClipboard(selector?: string): CopyToClipboardWrapper; /** * Returns a multi-element wrapper that matches CopyToClipboards with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches CopyToClipboards. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllCopyToClipboards(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the DateInputs with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches DateInputs. * * @param {string} [selector] CSS Selector * @returns {DateInputWrapper} */ findDateInput(selector?: string): DateInputWrapper; /** * Returns a multi-element wrapper that matches DateInputs with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches DateInputs. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllDateInputs(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the DatePickers with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches DatePickers. * * @param {string} [selector] CSS Selector * @returns {DatePickerWrapper} */ findDatePicker(selector?: string): DatePickerWrapper; /** * Returns a multi-element wrapper that matches DatePickers with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches DatePickers. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllDatePickers(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the DateRangePickers with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches DateRangePickers. * * @param {string} [selector] CSS Selector * @returns {DateRangePickerWrapper} */ findDateRangePicker(selector?: string): DateRangePickerWrapper; /** * Returns a multi-element wrapper that matches DateRangePickers with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches DateRangePickers. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllDateRangePickers(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the Drawers with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches Drawers. * * @param {string} [selector] CSS Selector * @returns {DrawerWrapper} */ findDrawer(selector?: string): DrawerWrapper; /** * Returns a multi-element wrapper that matches Drawers with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches Drawers. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllDrawers(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the ExpandableSections with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches ExpandableSections. * * @param {string} [selector] CSS Selector * @returns {ExpandableSectionWrapper} */ findExpandableSection(selector?: string): ExpandableSectionWrapper; /** * Returns a multi-element wrapper that matches ExpandableSections with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches ExpandableSections. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllExpandableSections(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the FileDropzones with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches FileDropzones. * * @param {string} [selector] CSS Selector * @returns {FileDropzoneWrapper} */ findFileDropzone(selector?: string): FileDropzoneWrapper; /** * Returns a multi-element wrapper that matches FileDropzones with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches FileDropzones. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllFileDropzones(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the FileInputs with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches FileInputs. * * @param {string} [selector] CSS Selector * @returns {FileInputWrapper} */ findFileInput(selector?: string): FileInputWrapper; /** * Returns a multi-element wrapper that matches FileInputs with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches FileInputs. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllFileInputs(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the FileTokenGroups with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches FileTokenGroups. * * @param {string} [selector] CSS Selector * @returns {FileTokenGroupWrapper} */ findFileTokenGroup(selector?: string): FileTokenGroupWrapper; /** * Returns a multi-element wrapper that matches FileTokenGroups with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches FileTokenGroups. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllFileTokenGroups(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the FileUploads with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches FileUploads. * * @param {string} [selector] CSS Selector * @returns {FileUploadWrapper} */ findFileUpload(selector?: string): FileUploadWrapper; /** * Returns a multi-element wrapper that matches FileUploads with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches FileUploads. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllFileUploads(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the Flashbars with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches Flashbars. * * @param {string} [selector] CSS Selector * @returns {FlashbarWrapper} */ findFlashbar(selector?: string): FlashbarWrapper; /** * Returns a multi-element wrapper that matches Flashbars with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches Flashbars. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllFlashbars(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the Forms with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches Forms. * * @param {string} [selector] CSS Selector * @returns {FormWrapper} */ findForm(selector?: string): FormWrapper; /** * Returns a multi-element wrapper that matches Forms with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches Forms. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllForms(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the FormFields with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches FormFields. * * @param {string} [selector] CSS Selector * @returns {FormFieldWrapper} */ findFormField(selector?: string): FormFieldWrapper; /** * Returns a multi-element wrapper that matches FormFields with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches FormFields. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllFormFields(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the Grids with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches Grids. * * @param {string} [selector] CSS Selector * @returns {GridWrapper} */ findGrid(selector?: string): GridWrapper; /** * Returns a multi-element wrapper that matches Grids with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches Grids. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllGrids(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the Headers with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches Headers. * * @param {string} [selector] CSS Selector * @returns {HeaderWrapper} */ findHeader(selector?: string): HeaderWrapper; /** * Returns a multi-element wrapper that matches Headers with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches Headers. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllHeaders(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the HelpPanels with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches HelpPanels. * * @param {string} [selector] CSS Selector * @returns {HelpPanelWrapper} */ findHelpPanel(selector?: string): HelpPanelWrapper; /** * Returns a multi-element wrapper that matches HelpPanels with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches HelpPanels. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllHelpPanels(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the Hotspots with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches Hotspots. * * @param {string} [selector] CSS Selector * @returns {HotspotWrapper} */ findHotspot(selector?: string): HotspotWrapper; /** * Returns a multi-element wrapper that matches Hotspots with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches Hotspots. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllHotspots(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the Icons with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches Icons. * * @param {string} [selector] CSS Selector * @returns {IconWrapper} */ findIcon(selector?: string): IconWrapper; /** * Returns a multi-element wrapper that matches Icons with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches Icons. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllIcons(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the Inputs with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches Inputs. * * @param {string} [selector] CSS Selector * @returns {InputWrapper} */ findInput(selector?: string): InputWrapper; /** * Returns a multi-element wrapper that matches Inputs with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches Inputs. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllInputs(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the KeyValuePairs with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches KeyValuePairs. * * @param {string} [selector] CSS Selector * @returns {KeyValuePairsWrapper} */ findKeyValuePairs(selector?: string): KeyValuePairsWrapper; /** * Returns a multi-element wrapper that matches KeyValuePairs with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches KeyValuePairs. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllKeyValuePairs(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the LineCharts with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches LineCharts. * * @param {string} [selector] CSS Selector * @returns {LineChartWrapper} */ findLineChart(selector?: string): LineChartWrapper; /** * Returns a multi-element wrapper that matches LineCharts with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches LineCharts. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllLineCharts(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the Links with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches Links. * * @param {string} [selector] CSS Selector * @returns {LinkWrapper} */ findLink(selector?: string): LinkWrapper; /** * Returns a multi-element wrapper that matches Links with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches Links. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllLinks(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the Lists with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches Lists. * * @param {string} [selector] CSS Selector * @returns {ListWrapper} */ findList(selector?: string): ListWrapper; /** * Returns a multi-element wrapper that matches Lists with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches Lists. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllLists(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the LiveRegions with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches LiveRegions. * * @param {string} [selector] CSS Selector * @returns {LiveRegionWrapper} */ findLiveRegion(selector?: string): LiveRegionWrapper; /** * Returns a multi-element wrapper that matches LiveRegions with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches LiveRegions. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllLiveRegions(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the MixedLineBarCharts with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches MixedLineBarCharts. * * @param {string} [selector] CSS Selector * @returns {MixedLineBarChartWrapper} */ findMixedLineBarChart(selector?: string): MixedLineBarChartWrapper; /** * Returns a multi-element wrapper that matches MixedLineBarCharts with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches MixedLineBarCharts. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllMixedLineBarCharts(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the Modals with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches Modals. * * @param {string} [selector] CSS Selector * @returns {ModalWrapper} */ findModal(selector?: string): ModalWrapper; /** * Returns a multi-element wrapper that matches Modals with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches Modals. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllModals(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the Multiselects with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches Multiselects. * * @param {string} [selector] CSS Selector * @returns {MultiselectWrapper} */ findMultiselect(selector?: string): MultiselectWrapper; /** * Returns a multi-element wrapper that matches Multiselects with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches Multiselects. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllMultiselects(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the NavigableGroups with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches NavigableGroups. * * @param {string} [selector] CSS Selector * @returns {NavigableGroupWrapper} */ findNavigableGroup(selector?: string): NavigableGroupWrapper; /** * Returns a multi-element wrapper that matches NavigableGroups with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches NavigableGroups. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllNavigableGroups(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the Paginations with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches Paginations. * * @param {string} [selector] CSS Selector * @returns {PaginationWrapper} */ findPagination(selector?: string): PaginationWrapper; /** * Returns a multi-element wrapper that matches Paginations with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches Paginations. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllPaginations(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the PieCharts with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches PieCharts. * * @param {string} [selector] CSS Selector * @returns {PieChartWrapper} */ findPieChart(selector?: string): PieChartWrapper; /** * Returns a multi-element wrapper that matches PieCharts with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches PieCharts. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllPieCharts(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the Popovers with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches Popovers. * * @param {string} [selector] CSS Selector * @returns {PopoverWrapper} */ findPopover(selector?: string): PopoverWrapper; /** * Returns a multi-element wrapper that matches Popovers with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches Popovers. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllPopovers(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the ProgressBars with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches ProgressBars. * * @param {string} [selector] CSS Selector * @returns {ProgressBarWrapper} */ findProgressBar(selector?: string): ProgressBarWrapper; /** * Returns a multi-element wrapper that matches ProgressBars with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches ProgressBars. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllProgressBars(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the PromptInputs with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches PromptInputs. * * @param {string} [selector] CSS Selector * @returns {PromptInputWrapper} */ findPromptInput(selector?: string): PromptInputWrapper; /** * Returns a multi-element wrapper that matches PromptInputs with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches PromptInputs. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllPromptInputs(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the PropertyFilters with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches PropertyFilters. * * @param {string} [selector] CSS Selector * @returns {PropertyFilterWrapper} */ findPropertyFilter(selector?: string): PropertyFilterWrapper; /** * Returns a multi-element wrapper that matches PropertyFilters with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches PropertyFilters. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllPropertyFilters(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the RadioButtons with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches RadioButtons. * * @param {string} [selector] CSS Selector * @returns {RadioButtonWrapper} */ findRadioButton(selector?: string): RadioButtonWrapper; /** * Returns a multi-element wrapper that matches RadioButtons with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches RadioButtons. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllRadioButtons(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the RadioGroups with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches RadioGroups. * * @param {string} [selector] CSS Selector * @returns {RadioGroupWrapper} */ findRadioGroup(selector?: string): RadioGroupWrapper; /** * Returns a multi-element wrapper that matches RadioGroups with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches RadioGroups. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllRadioGroups(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the S3ResourceSelectors with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches S3ResourceSelectors. * * @param {string} [selector] CSS Selector * @returns {S3ResourceSelectorWrapper} */ findS3ResourceSelector(selector?: string): S3ResourceSelectorWrapper; /** * Returns a multi-element wrapper that matches S3ResourceSelectors with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches S3ResourceSelectors. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllS3ResourceSelectors(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the SegmentedControls with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches SegmentedControls. * * @param {string} [selector] CSS Selector * @returns {SegmentedControlWrapper} */ findSegmentedControl(selector?: string): SegmentedControlWrapper; /** * Returns a multi-element wrapper that matches SegmentedControls with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches SegmentedControls. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllSegmentedControls(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the Selects with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches Selects. * * @param {string} [selector] CSS Selector * @returns {SelectWrapper} */ findSelect(selector?: string): SelectWrapper; /** * Returns a multi-element wrapper that matches Selects with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches Selects. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllSelects(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the SideNavigations with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches SideNavigations. * * @param {string} [selector] CSS Selector * @returns {SideNavigationWrapper} */ findSideNavigation(selector?: string): SideNavigationWrapper; /** * Returns a multi-element wrapper that matches SideNavigations with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches SideNavigations. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllSideNavigations(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the Sliders with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches Sliders. * * @param {string} [selector] CSS Selector * @returns {SliderWrapper} */ findSlider(selector?: string): SliderWrapper; /** * Returns a multi-element wrapper that matches Sliders with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches Sliders. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllSliders(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the SpaceBetweens with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches SpaceBetweens. * * @param {string} [selector] CSS Selector * @returns {SpaceBetweenWrapper} */ findSpaceBetween(selector?: string): SpaceBetweenWrapper; /** * Returns a multi-element wrapper that matches SpaceBetweens with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches SpaceBetweens. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllSpaceBetweens(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the Spinners with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches Spinners. * * @param {string} [selector] CSS Selector * @returns {SpinnerWrapper} */ findSpinner(selector?: string): SpinnerWrapper; /** * Returns a multi-element wrapper that matches Spinners with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches Spinners. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllSpinners(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the SplitPanels with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches SplitPanels. * * @param {string} [selector] CSS Selector * @returns {SplitPanelWrapper} */ findSplitPanel(selector?: string): SplitPanelWrapper; /** * Returns a multi-element wrapper that matches SplitPanels with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches SplitPanels. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllSplitPanels(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the StatusIndicators with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches StatusIndicators. * * @param {string} [selector] CSS Selector * @returns {StatusIndicatorWrapper} */ findStatusIndicator(selector?: string): StatusIndicatorWrapper; /** * Returns a multi-element wrapper that matches StatusIndicators with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches StatusIndicators. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllStatusIndicators(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the Steps with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches Steps. * * @param {string} [selector] CSS Selector * @returns {StepsWrapper} */ findSteps(selector?: string): StepsWrapper; /** * Returns a multi-element wrapper that matches Steps with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches Steps. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllSteps(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the Tables with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches Tables. * * @param {string} [selector] CSS Selector * @returns {TableWrapper} */ findTable(selector?: string): TableWrapper; /** * Returns a multi-element wrapper that matches Tables with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches Tables. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllTables(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the Tabs with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches Tabs. * * @param {string} [selector] CSS Selector * @returns {TabsWrapper} */ findTabs(selector?: string): TabsWrapper; /** * Returns a multi-element wrapper that matches Tabs with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches Tabs. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllTabs(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the TagEditors with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches TagEditors. * * @param {string} [selector] CSS Selector * @returns {TagEditorWrapper} */ findTagEditor(selector?: string): TagEditorWrapper; /** * Returns a multi-element wrapper that matches TagEditors with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches TagEditors. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllTagEditors(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the TextContents with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches TextContents. * * @param {string} [selector] CSS Selector * @returns {TextContentWrapper} */ findTextContent(selector?: string): TextContentWrapper; /** * Returns a multi-element wrapper that matches TextContents with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches TextContents. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllTextContents(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the TextFilters with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches TextFilters. * * @param {string} [selector] CSS Selector * @returns {TextFilterWrapper} */ findTextFilter(selector?: string): TextFilterWrapper; /** * Returns a multi-element wrapper that matches TextFilters with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches TextFilters. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllTextFilters(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the Textareas with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches Textareas. * * @param {string} [selector] CSS Selector * @returns {TextareaWrapper} */ findTextarea(selector?: string): TextareaWrapper; /** * Returns a multi-element wrapper that matches Textareas with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches Textareas. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllTextareas(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the Tiles with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches Tiles. * * @param {string} [selector] CSS Selector * @returns {TilesWrapper} */ findTiles(selector?: string): TilesWrapper; /** * Returns a multi-element wrapper that matches Tiles with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches Tiles. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllTiles(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the TimeInputs with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches TimeInputs. * * @param {string} [selector] CSS Selector * @returns {TimeInputWrapper} */ findTimeInput(selector?: string): TimeInputWrapper; /** * Returns a multi-element wrapper that matches TimeInputs with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches TimeInputs. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllTimeInputs(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the Toggles with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches Toggles. * * @param {string} [selector] CSS Selector * @returns {ToggleWrapper} */ findToggle(selector?: string): ToggleWrapper; /** * Returns a multi-element wrapper that matches Toggles with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches Toggles. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllToggles(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the ToggleButtons with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches ToggleButtons. * * @param {string} [selector] CSS Selector * @returns {ToggleButtonWrapper} */ findToggleButton(selector?: string): ToggleButtonWrapper; /** * Returns a multi-element wrapper that matches ToggleButtons with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches ToggleButtons. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllToggleButtons(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the Tokens with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches Tokens. * * @param {string} [selector] CSS Selector * @returns {TokenWrapper} */ findToken(selector?: string): TokenWrapper; /** * Returns a multi-element wrapper that matches Tokens with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches Tokens. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllTokens(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the TokenGroups with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches TokenGroups. * * @param {string} [selector] CSS Selector * @returns {TokenGroupWrapper} */ findTokenGroup(selector?: string): TokenGroupWrapper; /** * Returns a multi-element wrapper that matches TokenGroups with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches TokenGroups. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllTokenGroups(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the TopNavigations with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches TopNavigations. * * @param {string} [selector] CSS Selector * @returns {TopNavigationWrapper} */ findTopNavigation(selector?: string): TopNavigationWrapper; /** * Returns a multi-element wrapper that matches TopNavigations with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches TopNavigations. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllTopNavigations(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the TreeViews with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches TreeViews. * * @param {string} [selector] CSS Selector * @returns {TreeViewWrapper} */ findTreeView(selector?: string): TreeViewWrapper; /** * Returns a multi-element wrapper that matches TreeViews with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches TreeViews. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllTreeViews(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the TutorialPanels with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches TutorialPanels. * * @param {string} [selector] CSS Selector * @returns {TutorialPanelWrapper} */ findTutorialPanel(selector?: string): TutorialPanelWrapper; /** * Returns a multi-element wrapper that matches TutorialPanels with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches TutorialPanels. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllTutorialPanels(selector?: string): MultiElementWrapper; /** * Returns a wrapper that matches the Wizards with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches Wizards. * * @param {string} [selector] CSS Selector * @returns {WizardWrapper} */ findWizard(selector?: string): WizardWrapper; /** * Returns a multi-element wrapper that matches Wizards with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches Wizards. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllWizards(selector?: string): MultiElementWrapper; } } export default function wrapper(root?: string): ElementWrapper;