diff --git a/build-tools/tasks/docs.js b/build-tools/tasks/docs.js index 2c4a1c2ed9..34a4aea596 100644 --- a/build-tools/tasks/docs.js +++ b/build-tools/tasks/docs.js @@ -1,8 +1,7 @@ // Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 const path = require('path'); -const { writeComponentsDocumentation, documentTestUtils } = require('@cloudscape-design/documenter'); -const { writeFile } = require('../utils/files'); +const { writeComponentsDocumentation, writeTestUtilsDocumentation } = require('@cloudscape-design/documenter'); const workspace = require('../utils/workspace'); module.exports = function docs() { @@ -15,27 +14,17 @@ module.exports = function docs() { TagEditor: ['getTagsDiff'], }, }); - testUtilDocs(); + writeTestUtilsDocumentation({ + outDir: path.join(workspace.apiDocsPath, 'test-utils-doc'), + tsconfigPath: require.resolve('../../src/test-utils/tsconfig.json'), + domUtils: { + root: 'src/test-utils/dom/index.ts', + extraExports: ['default', 'ElementWrapper'], + }, + selectorsUtils: { + root: 'src/test-utils/selectors/index.ts', + extraExports: ['default', 'ElementWrapper'], + }, + }); return Promise.resolve(); }; - -function testUtilDocs() { - ['dom', 'selectors'].forEach(testUtilType => { - const baseWrapperDefinitions = require(`@cloudscape-design/test-utils-core/test-utils-doc/${testUtilType}`); - const componentWrapperDefinitions = documentTestUtils( - { - tsconfig: require.resolve('../../src/test-utils/tsconfig.json'), - }, - `**/{${testUtilType},types}/**/*` - ); - - const definitions = [...baseWrapperDefinitions.classes, ...componentWrapperDefinitions]; - const indexContent = `module.exports = { - classes: ${JSON.stringify(definitions)} - } - `; - - const outPath = path.join(workspace.apiDocsPath, 'test-utils-doc', `${testUtilType}.js`); - writeFile(outPath, indexContent); - }); -} diff --git a/src/__tests__/snapshot-tests/__snapshots__/documenter.test.ts.snap b/src/__tests__/snapshot-tests/__snapshots__/documenter.test.ts.snap index 55e8e2234f..7bf8eaa656 100644 --- a/src/__tests__/snapshot-tests/__snapshots__/documenter.test.ts.snap +++ b/src/__tests__/snapshot-tests/__snapshots__/documenter.test.ts.snap @@ -27086,6 +27086,9 @@ exports[`Test-utils dom definitions match the snapshot 1`] = ` { "methods": [ { + "inheritedFrom": { + "name": "AbstractWrapper.blur", + }, "name": "blur", "parameters": [], "returnType": { @@ -27096,6 +27099,9 @@ exports[`Test-utils dom definitions match the snapshot 1`] = ` { "description": "Performs a click by triggering a mouse event. Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", + "inheritedFrom": { + "name": "AbstractWrapper.click", + }, "name": "click", "parameters": [ { @@ -27112,6 +27118,9 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, }, { + "inheritedFrom": { + "name": "AbstractWrapper.find", + }, "name": "find", "parameters": [ { @@ -27133,6 +27142,33 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, }, { + "description": "Returns the action button. + +The action button is only rendered when the \`buttonText\` property is set.", + "name": "findActionButton", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ButtonWrapper", + }, + }, + { + "name": "findActionSlot", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.findAll", + }, "name": "findAll", "parameters": [ { @@ -27154,6 +27190,9 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, }, { + "inheritedFrom": { + "name": "AbstractWrapper.findAllByClassName", + }, "name": "findAllByClassName", "parameters": [ { @@ -27178,6 +27217,9 @@ Note that programmatic events ignore disabled attribute and will trigger listene "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. If no CSS selector is specified, returns all of the components that match the specified component type. If no matching component is found, returns an empty array.", + "inheritedFrom": { + "name": "AbstractWrapper.findAllComponents", + }, "name": "findAllComponents", "parameters": [ { @@ -27208,6 +27250,9 @@ If no matching component is found, returns an empty array.", }, }, { + "inheritedFrom": { + "name": "AbstractWrapper.findAny", + }, "name": "findAny", "parameters": [ { @@ -27229,6 +27274,9 @@ If no matching component is found, returns an empty array.", }, }, { + "inheritedFrom": { + "name": "AbstractWrapper.findByClassName", + }, "name": "findByClassName", "parameters": [ { @@ -27254,6 +27302,9 @@ If no matching component is found, returns an empty array.", If the specified selector doesn't match any element, it returns \`null\`. Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", + "inheritedFrom": { + "name": "AbstractWrapper.findComponent", + }, "name": "findComponent", "parameters": [ { @@ -27279,6 +27330,60 @@ Note: This function returns the specified component's wrapper even if the specif }, }, { + "name": "findContent", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "description": "Returns the dismiss button. + +The dismiss button is only rendered when the \`dismissible\` property is set to \`true\`.", + "name": "findDismissButton", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ButtonWrapper", + }, + }, + { + "name": "findHeader", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "description": "Returns the container node of the component.", + "name": "findRootElement", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.fireEvent", + }, "name": "fireEvent", "parameters": [ { @@ -27295,6 +27400,9 @@ Note: This function returns the specified component's wrapper even if the specif }, }, { + "inheritedFrom": { + "name": "AbstractWrapper.focus", + }, "name": "focus", "parameters": [], "returnType": { @@ -27303,6 +27411,9 @@ Note: This function returns the specified component's wrapper even if the specif }, }, { + "inheritedFrom": { + "name": "AbstractWrapper.getElement", + }, "name": "getElement", "parameters": [], "returnType": { @@ -27311,6 +27422,9 @@ Note: This function returns the specified component's wrapper even if the specif }, }, { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, "name": "keydown", "parameters": [ { @@ -27327,6 +27441,9 @@ Note: This function returns the specified component's wrapper even if the specif }, }, { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, "name": "keydown", "parameters": [ { @@ -27343,6 +27460,9 @@ Note: This function returns the specified component's wrapper even if the specif }, }, { + "inheritedFrom": { + "name": "AbstractWrapper.keypress", + }, "name": "keypress", "parameters": [ { @@ -27359,6 +27479,9 @@ Note: This function returns the specified component's wrapper even if the specif }, }, { + "inheritedFrom": { + "name": "AbstractWrapper.keyup", + }, "name": "keyup", "parameters": [ { @@ -27375,6 +27498,9 @@ Note: This function returns the specified component's wrapper even if the specif }, }, { + "inheritedFrom": { + "name": "AbstractWrapper.matches", + }, "name": "matches", "parameters": [ { @@ -27391,7 +27517,7 @@ Note: This function returns the specified component's wrapper even if the specif }, }, ], - "name": "AbstractWrapper", + "name": "AlertWrapper", }, { "methods": [ @@ -27451,6 +27577,14 @@ Note that programmatic events ignore disabled attribute and will trigger listene ], }, }, + { + "name": "findActiveAnchor", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "AnchorItemWrapper", + }, + }, { "inheritedFrom": { "name": "AbstractWrapper.findAll", @@ -27535,6 +27669,82 @@ If no matching component is found, returns an empty array.", ], }, }, + { + "name": "findAnchorByIndex", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "index", + "typeName": "number", + }, + ], + "returnType": { + "isNullable": true, + "name": "AnchorItemWrapper", + }, + }, + { + "name": "findAnchorLinkByHref", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "href", + "typeName": "string", + }, + ], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLAnchorElement", + }, + ], + }, + }, + { + "name": "findAnchorNavigation", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLOListElement", + }, + ], + }, + }, + { + "name": "findAnchorNavigationList", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLOListElement", + }, + ], + }, + }, + { + "name": "findAnchors", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "AnchorItemWrapper", + }, + ], + }, + }, { "inheritedFrom": { "name": "AbstractWrapper.findAny", @@ -27752,7 +27962,7 @@ Note: This function returns the specified component's wrapper even if the specif }, }, ], - "name": "ElementWrapper", + "name": "AnchorNavigationWrapper", }, { "methods": [ @@ -27976,6 +28186,45 @@ Note: This function returns the specified component's wrapper even if the specif "name": "Wrapper", }, }, + { + "name": "findInfo", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findLink", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLAnchorElement", + }, + ], + }, + }, + { + "name": "findText", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, { "inheritedFrom": { "name": "AbstractWrapper.fireEvent", @@ -28017,6 +28266,14 @@ Note: This function returns the specified component's wrapper even if the specif "name": "ElementType", }, }, + { + "name": "isActive", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "boolean", + }, + }, { "inheritedFrom": { "name": "AbstractWrapper.keydown", @@ -28113,7 +28370,7 @@ Note: This function returns the specified component's wrapper even if the specif }, }, ], - "name": "ComponentWrapper", + "name": "AnchorItemWrapper", }, { "methods": [ @@ -28124,8 +28381,8 @@ Note: This function returns the specified component's wrapper even if the specif "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -28145,8 +28402,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -28164,27 +28421,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the action button. -The action button is only rendered when the \`buttonText\` property is set. -", - "name": "findActionButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper | null", - "type": "union", - }, - }, - { - "name": "findActionSlot", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -28202,8 +28445,13 @@ The action button is only rendered when the \`buttonText\` property is set. }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -28221,8 +28469,13 @@ The action button is only rendered when the \`buttonText\` property is set. }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -28235,28 +28488,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -28272,12 +28525,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -28295,23 +28553,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -28319,54 +28581,88 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { "name": "findContent", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "description": "Returns the dismiss button. -The dismiss button is only rendered when the \`dismissible\` property is set to \`true\`. -", "name": "findDismissButton", "parameters": [], "returnType": { - "name": "ButtonWrapper | null", - "type": "union", + "isNullable": false, + "name": "ButtonWrapper", + }, + }, + { + "name": "findFinishButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ButtonWrapper", }, }, { "name": "findHeader", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "description": "Returns the container node of the component.", - "name": "findRootElement", + "name": "findNextButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ButtonWrapper", + }, + }, + { + "name": "findPreviousButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ButtonWrapper", + }, + }, + { + "name": "findStepCounter", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { @@ -28384,8 +28680,8 @@ The dismiss button is only rendered when the \`dismissible\` property is set to }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -28395,8 +28691,8 @@ The dismiss button is only rendered when the \`dismissible\` property is set to "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -28406,8 +28702,8 @@ The dismiss button is only rendered when the \`dismissible\` property is set to "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -28425,8 +28721,27 @@ The dismiss button is only rendered when the \`dismissible\` property is set to }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -28444,8 +28759,8 @@ The dismiss button is only rendered when the \`dismissible\` property is set to }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -28463,8 +28778,8 @@ The dismiss button is only rendered when the \`dismissible\` property is set to }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -28482,12 +28797,12 @@ The dismiss button is only rendered when the \`dismissible\` property is set to }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "AlertWrapper", + "name": "AnnotationWrapper", }, { "methods": [ @@ -28498,8 +28813,8 @@ The dismiss button is only rendered when the \`dismissible\` property is set to "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -28519,8 +28834,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -28538,8 +28853,52 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], + }, + }, + { + "name": "findActiveDrawer", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findActiveDrawerCloseButton", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLButtonElement", + }, + ], + }, + }, + { + "name": "findActiveDrawerResizeHandle", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { @@ -28557,8 +28916,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -28576,8 +28940,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -28590,28 +28959,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -28627,12 +28996,30 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], + }, + }, + { + "name": "findBreadcrumbs", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { @@ -28650,23 +29037,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -28674,439 +29065,247 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "name": "findInfo", + "name": "findContentRegion", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "name": "findLink", + "name": "findDrawersOverflowTrigger", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ButtonDropdownWrapper", }, }, { - "name": "findText", + "name": "findDrawersTriggers", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", + "description": "Finds a drawer trigger by the given id.", + "name": "findDrawerTriggerById", "parameters": [ { + "description": "id of the trigger to find", "flags": { "isOptional": false, }, - "name": "event", - "typeName": "Event", + "name": "id", + "typeName": "string", }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "HTMLElement", - "type": "reference", - }, - }, - { - "name": "isActive", - "parameters": [], - "returnType": { - "name": "boolean", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", - "parameters": [ { + "defaultValue": "{}", + "description": "* hasBadge (boolean) - If provided, only finds drawers with the badge or without badge respectively", "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "options", + "typeName": "{ hasBadge?: boolean | undefined; }", }, ], "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLButtonElement", }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", + ], }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.keyup", - }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], + "name": "findDrawerTriggerTooltip", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "this | null", - "type": "union", + ], }, }, - ], - "name": "AnchorItemWrapper", - }, - { - "methods": [ { - "inheritedFrom": { - "name": "AbstractWrapper.blur", - }, - "name": "blur", + "name": "findNavigation", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", + ], }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], + "name": "findNavigationClose", + "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLButtonElement", + }, + ], }, }, { - "name": "findActiveAnchor", + "name": "findNavigationToggle", "parameters": [], "returnType": { - "name": "AnchorItemWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLButtonElement", }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", + ], }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], + "name": "findNotifications", + "parameters": [], "returnType": { - "name": "array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findOpenNavigationPanel", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "Wrapper", - "type": "typeParameter", + "name": "HTMLElement", }, ], }, }, { - "name": "findAnchorByIndex", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "index", - "typeName": "number", - }, - ], + "name": "findOpenToolsPanel", + "parameters": [], "returnType": { - "name": "AnchorItemWrapper | null", - "type": "union", - }, - }, - { - "name": "findAnchorLinkByHref", - "parameters": [ - { - "flags": { - "isOptional": false, + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", }, - "name": "href", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + ], }, }, { - "name": "findAnchorNavigation", + "name": "findSplitPanel", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "SplitPanelWrapper", }, }, { - "name": "findAnchorNavigationList", + "name": "findSplitPanelOpenButton", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "name": "findAnchors", + "name": "findToolbar", "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "AnchorItemWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], + "name": "findTools", + "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], + "name": "findToolsClose", + "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLButtonElement", + }, + ], }, }, { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], + "name": "findToolsToggle", + "parameters": [], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLButtonElement", + }, + ], }, }, { @@ -29124,8 +29323,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -29135,8 +29334,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -29146,8 +29345,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -29165,8 +29364,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -29184,8 +29402,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -29203,8 +29421,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -29222,12 +29440,12 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "AnchorNavigationWrapper", + "name": "AppLayoutWrapper", }, { "methods": [ @@ -29238,8 +29456,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -29259,8 +29477,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -29278,8 +29496,61 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "AppLayoutWrapper.findActiveDrawer", + }, + "name": "findActiveDrawer", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "AppLayoutWrapper.findActiveDrawerCloseButton", + }, + "name": "findActiveDrawerCloseButton", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLButtonElement", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "AppLayoutWrapper.findActiveDrawerResizeHandle", + }, + "name": "findActiveDrawerResizeHandle", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { @@ -29297,8 +29568,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -29316,8 +29592,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -29330,28 +29611,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -29367,12 +29648,33 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "AppLayoutWrapper.findBreadcrumbs", + }, + "name": "findBreadcrumbs", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { @@ -29390,23 +29692,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -29414,74 +29720,298 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "name": "findContent", + "inheritedFrom": { + "name": "AppLayoutWrapper.findContentRegion", + }, + "name": "findContentRegion", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "name": "findDismissButton", + "inheritedFrom": { + "name": "AppLayoutWrapper.findDrawersOverflowTrigger", + }, + "name": "findDrawersOverflowTrigger", "parameters": [], "returnType": { - "name": "ButtonWrapper", - "type": "reference", + "isNullable": true, + "name": "ButtonDropdownWrapper", }, }, { - "name": "findFinishButton", + "inheritedFrom": { + "name": "AppLayoutWrapper.findDrawersTriggers", + }, + "name": "findDrawersTriggers", "parameters": [], "returnType": { - "name": "ButtonWrapper", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "name": "findHeader", + "description": "Finds a drawer trigger by the given id.", + "inheritedFrom": { + "name": "AppLayoutWrapper.findDrawerTriggerById", + }, + "name": "findDrawerTriggerById", + "parameters": [ + { + "description": "id of the trigger to find", + "flags": { + "isOptional": false, + }, + "name": "id", + "typeName": "string", + }, + { + "defaultValue": "{}", + "description": "* hasBadge (boolean) - If provided, only finds drawers with the badge or without badge respectively", + "flags": { + "isOptional": false, + }, + "name": "options", + "typeName": "{ hasBadge?: boolean | undefined; }", + }, + ], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLButtonElement", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "AppLayoutWrapper.findDrawerTriggerTooltip", + }, + "name": "findDrawerTriggerTooltip", "parameters": [], "returnType": { + "isNullable": true, "name": "ElementWrapper", - "type": "reference", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "name": "findNextButton", + "inheritedFrom": { + "name": "AppLayoutWrapper.findNavigation", + }, + "name": "findNavigation", "parameters": [], "returnType": { - "name": "ButtonWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "name": "findPreviousButton", + "inheritedFrom": { + "name": "AppLayoutWrapper.findNavigationClose", + }, + "name": "findNavigationClose", "parameters": [], "returnType": { - "name": "ButtonWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLButtonElement", + }, + ], }, }, { - "name": "findStepCounter", + "inheritedFrom": { + "name": "AppLayoutWrapper.findNavigationToggle", + }, + "name": "findNavigationToggle", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLButtonElement", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "AppLayoutWrapper.findNotifications", + }, + "name": "findNotifications", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "AppLayoutWrapper.findOpenNavigationPanel", + }, + "name": "findOpenNavigationPanel", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "AppLayoutWrapper.findOpenToolsPanel", + }, + "name": "findOpenToolsPanel", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "AppLayoutWrapper.findSplitPanel", + }, + "name": "findSplitPanel", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "SplitPanelWrapper", + }, + }, + { + "inheritedFrom": { + "name": "AppLayoutWrapper.findSplitPanelOpenButton", + }, + "name": "findSplitPanelOpenButton", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "AppLayoutWrapper.findToolbar", + }, + "name": "findToolbar", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "AppLayoutWrapper.findTools", + }, + "name": "findTools", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "AppLayoutWrapper.findToolsClose", + }, + "name": "findToolsClose", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLButtonElement", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "AppLayoutWrapper.findToolsToggle", + }, + "name": "findToolsToggle", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", + "typeArguments": [ + { + "name": "HTMLButtonElement", + }, + ], }, }, { @@ -29499,8 +30029,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -29510,8 +30040,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -29521,8 +30051,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -29540,8 +30070,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -29559,8 +30108,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -29578,8 +30127,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -29597,12 +30146,12 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "AnnotationWrapper", + "name": "AppLayoutToolbarWrapper", }, { "methods": [ @@ -29613,8 +30162,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -29634,8 +30183,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -29653,41 +30202,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AppLayoutWrapper.findActiveDrawer", - }, - "name": "findActiveDrawer", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AppLayoutWrapper.findActiveDrawerCloseButton", - }, - "name": "findActiveDrawerCloseButton", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AppLayoutWrapper.findActiveDrawerResizeHandle", - }, - "name": "findActiveDrawerResizeHandle", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -29705,8 +30226,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -29724,8 +30250,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -29738,28 +30269,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -29775,23 +30306,34 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { + "description": "Returns a focusable element that controls keyboard interactions.", "inheritedFrom": { - "name": "AppLayoutWrapper.findBreadcrumbs", + "name": "BaseCartesianChartWrapper.findApplication", }, - "name": "findBreadcrumbs", + "name": "findApplication", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { @@ -29809,23 +30351,40 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], + }, + }, + { + "name": "findChart", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -29833,292 +30392,233 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { "inheritedFrom": { - "name": "AppLayoutWrapper.findContentRegion", + "name": "CommonChartWrapper.findDefaultFilter", }, - "name": "findContentRegion", + "name": "findDefaultFilter", "parameters": [], "returnType": { - "name": "ElementWrapper", - "type": "reference", + "isNullable": true, + "name": "ChartFilterWrapper", }, }, { - "description": "Finds a drawer trigger by the given id.", "inheritedFrom": { - "name": "AppLayoutWrapper.findDrawerTriggerById", + "name": "CommonChartWrapper.findDetailPopover", }, - "name": "findDrawerTriggerById", - "parameters": [ - { - "description": " -id of the trigger to find", - "flags": { - "isOptional": false, - }, - "name": "id", - "typeName": "string", - }, - { - "defaultValue": "{}", - "description": " - -* hasBadge (boolean) - If provided, only finds drawers with the badge or without badge respectively -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], + "name": "findDetailPopover", + "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ChartPopoverWrapper", }, }, { "inheritedFrom": { - "name": "AppLayoutWrapper.findDrawerTriggerTooltip", + "name": "BaseCartesianChartWrapper.findFilterContainer", }, - "name": "findDrawerTriggerTooltip", + "name": "findFilterContainer", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "inheritedFrom": { - "name": "AppLayoutWrapper.findDrawersOverflowTrigger", - }, - "name": "findDrawersOverflowTrigger", + "name": "findHighlightedSeries", "parameters": [], "returnType": { - "name": "ButtonDropdownWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { "inheritedFrom": { - "name": "AppLayoutWrapper.findDrawersTriggers", + "name": "CommonChartWrapper.findLegend", }, - "name": "findDrawersTriggers", + "name": "findLegend", "parameters": [], "returnType": { - "name": "array", - "type": "reference", + "isNullable": true, + "name": "ChartLegendWrapper", }, }, { - "inheritedFrom": { - "name": "AppLayoutWrapper.findNavigation", - }, - "name": "findNavigation", + "description": "Returns an array of chart series. Note that thresholds count as series as well.", + "name": "findSeries", "parameters": [], "returnType": { - "name": "ElementWrapper", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { "inheritedFrom": { - "name": "AppLayoutWrapper.findNavigationClose", + "name": "CommonChartWrapper.findStatusContainer", }, - "name": "findNavigationClose", + "name": "findStatusContainer", "parameters": [], "returnType": { + "isNullable": true, "name": "ElementWrapper", - "type": "reference", "typeArguments": [ { - "name": "HTMLButtonElement", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { "inheritedFrom": { - "name": "AppLayoutWrapper.findNavigationToggle", + "name": "BaseCartesianChartWrapper.findXAxisTitle", }, - "name": "findNavigationToggle", + "name": "findXAxisTitle", "parameters": [], "returnType": { + "isNullable": true, "name": "ElementWrapper", - "type": "reference", "typeArguments": [ { - "name": "HTMLButtonElement", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { "inheritedFrom": { - "name": "AppLayoutWrapper.findNotifications", + "name": "BaseCartesianChartWrapper.findXTicks", }, - "name": "findNotifications", + "name": "findXTicks", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { "inheritedFrom": { - "name": "AppLayoutWrapper.findOpenNavigationPanel", + "name": "BaseCartesianChartWrapper.findYAxisTitle", }, - "name": "findOpenNavigationPanel", + "name": "findYAxisTitle", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { "inheritedFrom": { - "name": "AppLayoutWrapper.findOpenToolsPanel", + "name": "BaseCartesianChartWrapper.findYTicks", }, - "name": "findOpenToolsPanel", + "name": "findYTicks", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { "inheritedFrom": { - "name": "AppLayoutWrapper.findSplitPanel", + "name": "AbstractWrapper.fireEvent", }, - "name": "findSplitPanel", - "parameters": [], + "name": "fireEvent", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "event", + "typeName": "Event", + }, + ], "returnType": { - "name": "SplitPanelWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { "inheritedFrom": { - "name": "AppLayoutWrapper.findSplitPanelOpenButton", + "name": "AbstractWrapper.focus", }, - "name": "findSplitPanelOpenButton", + "name": "focus", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { "inheritedFrom": { - "name": "AppLayoutWrapper.findToolbar", + "name": "AbstractWrapper.getElement", }, - "name": "findToolbar", + "name": "getElement", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementType", }, }, { "inheritedFrom": { - "name": "AppLayoutWrapper.findTools", + "name": "AbstractWrapper.keydown", }, - "name": "findTools", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AppLayoutWrapper.findToolsClose", - }, - "name": "findToolsClose", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "HTMLButtonElement", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AppLayoutWrapper.findToolsToggle", - }, - "name": "findToolsToggle", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "HTMLButtonElement", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", - "parameters": [], + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyCode", + "typeName": "KeyCode", + }, + ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "HTMLElement", - "type": "reference", }, }, { @@ -30131,13 +30631,13 @@ id of the trigger to find", "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -30155,8 +30655,8 @@ id of the trigger to find", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -30174,8 +30674,8 @@ id of the trigger to find", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -30193,12 +30693,12 @@ id of the trigger to find", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "AppLayoutToolbarWrapper", + "name": "AreaChartWrapper", }, { "methods": [ @@ -30209,8 +30709,8 @@ id of the trigger to find", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -30230,8 +30730,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -30249,32 +30749,34 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findActiveDrawer", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { - "name": "findActiveDrawerCloseButton", + "name": "findAddButton", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ButtonWrapper", }, }, { - "name": "findActiveDrawerResizeHandle", + "name": "findAdditionalInfo", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { @@ -30292,8 +30794,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -30311,8 +30818,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -30325,28 +30837,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -30362,20 +30874,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findBreadcrumbs", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -30393,23 +30902,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -30417,198 +30930,62 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "name": "findContentRegion", + "name": "findEmptySlot", "parameters": [], "returnType": { + "isNullable": true, "name": "ElementWrapper", - "type": "reference", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "description": "Finds a drawer trigger by the given id.", - "name": "findDrawerTriggerById", + "description": "Returns a row for a given index.", + "name": "findRow", "parameters": [ { - "description": " -id of the trigger to find", - "flags": { - "isOptional": false, - }, - "name": "id", - "typeName": "string", - }, - { - "defaultValue": "{}", - "description": " - -* hasBadge (boolean) - If provided, only finds drawers with the badge or without badge respectively -", + "description": "1-based row index", "flags": { "isOptional": false, }, - "name": "options", + "name": "row", + "typeName": "number", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findDrawerTriggerTooltip", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findDrawersOverflowTrigger", - "parameters": [], - "returnType": { - "name": "ButtonDropdownWrapper | null", - "type": "union", - }, - }, - { - "name": "findDrawersTriggers", - "parameters": [], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "name": "findNavigation", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findNavigationClose", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "HTMLButtonElement", - "type": "reference", - }, - ], - }, - }, - { - "name": "findNavigationToggle", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "HTMLButtonElement", - "type": "reference", - }, - ], - }, - }, - { - "name": "findNotifications", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findOpenNavigationPanel", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findOpenToolsPanel", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findSplitPanel", - "parameters": [], - "returnType": { - "name": "SplitPanelWrapper | null", - "type": "union", - }, - }, - { - "name": "findSplitPanelOpenButton", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findToolbar", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findTools", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findToolsClose", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "HTMLButtonElement", - "type": "reference", - }, - ], + "isNullable": true, + "name": "AttributeEditorRowWrapper", }, }, { - "name": "findToolsToggle", + "description": "Returns all rows. + +To find a specific row use the \`findRow(n)\` function as chaining \`findRows().get(n)\` can return unexpected results.", + "name": "findRows", "parameters": [], "returnType": { - "name": "ElementWrapper", - "type": "reference", + "isNullable": false, + "name": "Array", "typeArguments": [ { - "name": "HTMLButtonElement", - "type": "reference", + "name": "AttributeEditorRowWrapper", }, ], }, @@ -30628,8 +31005,8 @@ id of the trigger to find", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -30639,8 +31016,8 @@ id of the trigger to find", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -30650,8 +31027,8 @@ id of the trigger to find", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -30669,8 +31046,27 @@ id of the trigger to find", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -30688,8 +31084,8 @@ id of the trigger to find", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -30707,8 +31103,8 @@ id of the trigger to find", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -30726,12 +31122,12 @@ id of the trigger to find", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "AppLayoutWrapper", + "name": "AttributeEditorWrapper", }, { "methods": [ @@ -30742,8 +31138,8 @@ id of the trigger to find", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -30763,8 +31159,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -30782,8 +31178,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -30801,8 +31202,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -30820,8 +31226,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -30834,28 +31245,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -30871,24 +31282,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns a focusable element that controls keyboard interactions.", - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findApplication", - }, - "name": "findApplication", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -30906,31 +31310,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findChart", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -30938,152 +31338,70 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "CommonChartWrapper.findDefaultFilter", - }, - "name": "findDefaultFilter", - "parameters": [], - "returnType": { - "name": "ChartFilterWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "CommonChartWrapper.findDetailPopover", - }, - "name": "findDetailPopover", - "parameters": [], - "returnType": { - "name": "ChartPopoverWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findFilterContainer", - }, - "name": "findFilterContainer", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findHighlightedSeries", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "CommonChartWrapper.findLegend", - }, - "name": "findLegend", - "parameters": [], - "returnType": { - "name": "ChartLegendWrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "description": "Returns an array of chart series. Note that thresholds count as series as well.", - "name": "findSeries", + "name": "findCustomAction", "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "ElementWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "inheritedFrom": { - "name": "CommonChartWrapper.findStatusContainer", - }, - "name": "findStatusContainer", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findXAxisTitle", - }, - "name": "findXAxisTitle", - "parameters": [], + "description": "Returns a field for a given index", + "name": "findField", + "parameters": [ + { + "description": "1-based column index", + "flags": { + "isOptional": false, + }, + "name": "column", + "typeName": "number", + }, + ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "FormFieldWrapper", }, }, { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findXTicks", - }, - "name": "findXTicks", + "description": "Returns all fields. Fields are supplied in the \`definition\` property of the component.", + "name": "findFields", "parameters": [], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "ElementWrapper", - "type": "reference", + "name": "FormFieldWrapper", }, ], }, }, { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findYAxisTitle", - }, - "name": "findYAxisTitle", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findYTicks", - }, - "name": "findYTicks", + "name": "findRemoveButton", "parameters": [], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], + "isNullable": true, + "name": "ButtonWrapper", }, }, { @@ -31101,8 +31419,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -31112,8 +31430,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -31123,8 +31441,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -31142,34 +31460,34 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keypress", + "name": "AbstractWrapper.keydown", }, - "name": "keypress", + "name": "keydown", "parameters": [ { "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keyup", + "name": "AbstractWrapper.keypress", }, - "name": "keyup", + "name": "keypress", "parameters": [ { "flags": { @@ -31180,8 +31498,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keyup", + }, + "name": "keyup", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyCode", + "typeName": "KeyCode", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -31199,24 +31536,24 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "AreaChartWrapper", + "name": "AttributeEditorRowWrapper", }, { "methods": [ { "inheritedFrom": { - "name": "AbstractWrapper.blur", + "name": "BaseInputWrapper.blur", }, "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -31236,8 +31573,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -31255,8 +31592,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -31274,8 +31616,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -31293,8 +31640,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -31307,28 +31659,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -31344,12 +31696,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -31367,23 +31724,43 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "InputWrapper.findClearButton", + }, + "name": "findClearButton", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -31391,69 +31768,120 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "name": "findCustomAction", - "parameters": [], + "name": "findDropdown", + "parameters": [ + { + "defaultValue": "{ expandToViewport: false }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", + "flags": { + "isOptional": false, + }, + "name": "options", + "typeName": "{ expandToViewport: boolean; }", + }, + ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "AutosuggestDropdownWrapper", }, }, { - "description": "Returns a field for a given index", - "name": "findField", + "name": "findEnteredTextOption", "parameters": [ { - "description": " -1-based column index -", + "defaultValue": "{ expandToViewport: false }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", "flags": { "isOptional": false, }, - "name": "column", - "typeName": "number", + "name": "options", + "typeName": "{ expandToViewport: boolean; }", }, ], "returnType": { - "name": "FormFieldWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "description": "Returns all fields. Fields are supplied in the \`definition\` property of the component.", - "name": "findFields", - "parameters": [], + "name": "findErrorRecoveryButton", + "parameters": [ + { + "defaultValue": "{ expandToViewport: false }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", + "flags": { + "isOptional": false, + }, + "name": "options", + "typeName": "{ expandToViewport: boolean; }", + }, + ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "FormFieldWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "name": "findRemoveButton", + "inheritedFrom": { + "name": "BaseInputWrapper.findNativeInput", + }, + "name": "findNativeInput", "parameters": [], "returnType": { - "name": "ButtonWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLInputElement", + }, + ], + }, + }, + { + "name": "findStatusIndicator", + "parameters": [ + { + "defaultValue": "{ expandToViewport: false }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", + "flags": { + "isOptional": false, + }, + "name": "options", + "typeName": "{ expandToViewport: boolean; }", + }, + ], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { @@ -31471,19 +31899,19 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.focus", + "name": "BaseInputWrapper.focus", }, "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -31493,8 +31921,33 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", + }, + }, + { + "description": "Gets the value of the component. + +Returns the current value of the input.", + "inheritedFrom": { + "name": "BaseInputWrapper.getInputValue", + }, + "name": "getInputValue", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "string", + }, + }, + { + "inheritedFrom": { + "name": "BaseInputWrapper.isDisabled", + }, + "name": "isDisabled", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "boolean", }, }, { @@ -31512,8 +31965,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -31531,8 +32003,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -31550,8 +32022,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -31569,12 +32041,87 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", + }, + }, + { + "description": "Selects a suggestion from the dropdown by simulating mouse events.", + "name": "selectSuggestion", + "parameters": [ + { + "description": "1-based index of the suggestion to select.", + "flags": { + "isOptional": false, + }, + "name": "index", + "typeName": "number", + }, + { + "defaultValue": "{ expandToViewport: false }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", + "flags": { + "isOptional": false, + }, + "name": "options", + "typeName": "{ expandToViewport: boolean; }", + }, + ], + "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "description": "Selects a suggestion from the dropdown by simulating mouse events.", + "name": "selectSuggestionByValue", + "parameters": [ + { + "description": "value of suggestion to select", + "flags": { + "isOptional": false, + }, + "name": "value", + "typeName": "string", + }, + { + "defaultValue": "{ expandToViewport: false }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", + "flags": { + "isOptional": false, + }, + "name": "options", + "typeName": "{ expandToViewport: boolean; }", + }, + ], + "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "description": "Sets the value of the component and calls the \`onChange\` handler", + "inheritedFrom": { + "name": "BaseInputWrapper.setInputValue", + }, + "name": "setInputValue", + "parameters": [ + { + "description": "The value the input is set to.", + "flags": { + "isOptional": false, + }, + "name": "value", + "typeName": "string", + }, + ], + "returnType": { + "isNullable": false, + "name": "void", }, }, ], - "name": "AttributeEditorRowWrapper", + "name": "AutosuggestWrapper", }, { "methods": [ @@ -31585,8 +32132,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -31606,8 +32153,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -31625,24 +32172,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findAddButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - }, - }, - { - "name": "findAdditionalInfo", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -31660,8 +32196,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -31679,8 +32220,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -31693,28 +32239,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -31730,12 +32276,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -31753,23 +32304,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -31777,60 +32332,180 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "name": "findEmptySlot", + "description": "Returns all the selected options.", + "name": "findDisabledOptions", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "OptionWrapper", + }, + ], }, }, { - "description": "Returns a row for a given index.", - "name": "findRow", + "name": "findFooterRegion", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findHighlightedAriaLiveRegion", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "description": "Returns highlighted text fragments from all of the options. +Options get highlighted when they match the value of the input field.", + "name": "findHighlightedMatches", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], + }, + }, + { + "name": "findHighlightedOption", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "OptionWrapper", + }, + }, + { + "name": "findOpenDropdown", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "description": "Returns an option from the dropdown.", + "name": "findOption", "parameters": [ { - "description": " -1-based row index -", + "description": "1-based index of the option to select.", "flags": { "isOptional": false, }, - "name": "row", + "name": "optionIndex", "typeName": "number", }, ], "returnType": { - "name": "AttributeEditorRowWrapper | null", - "type": "union", + "isNullable": true, + "name": "OptionWrapper", }, }, { - "description": "Returns all rows. -To find a specific row use the \`findRow(n)\` function as chaining \`findRows().get(n)\` can return unexpected results.", - "name": "findRows", + "description": "Returns an option from the autosuggest by it's value", + "name": "findOptionByValue", + "parameters": [ + { + "description": "The 'value' of the option.", + "flags": { + "isOptional": false, + }, + "name": "value", + "typeName": "string", + }, + ], + "returnType": { + "isNullable": true, + "name": "OptionWrapper", + }, + }, + { + "description": "Returns an option from the dropdown.", + "name": "findOptionInGroup", + "parameters": [ + { + "description": "1-based index of the group to select an option in.", + "flags": { + "isOptional": false, + }, + "name": "groupIndex", + "typeName": "number", + }, + { + "description": "1-based index of the option to select.", + "flags": { + "isOptional": false, + }, + "name": "optionIndex", + "typeName": "number", + }, + ], + "returnType": { + "isNullable": true, + "name": "OptionWrapper", + }, + }, + { + "name": "findOptions", "parameters": [], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "AttributeEditorRowWrapper", - "type": "reference", + "name": "OptionWrapper", + }, + ], + }, + }, + { + "description": "Use this element to scroll through the list of options", + "name": "findOptionsContainer", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", }, ], }, @@ -31850,8 +32525,8 @@ To find a specific row use the \`findRow(n)\` function as chaining \`findRows(). }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -31861,8 +32536,8 @@ To find a specific row use the \`findRow(n)\` function as chaining \`findRows(). "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -31872,8 +32547,8 @@ To find a specific row use the \`findRow(n)\` function as chaining \`findRows(). "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -31891,34 +32566,34 @@ To find a specific row use the \`findRow(n)\` function as chaining \`findRows(). }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keypress", + "name": "AbstractWrapper.keydown", }, - "name": "keypress", + "name": "keydown", "parameters": [ { "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keyup", + "name": "AbstractWrapper.keypress", }, - "name": "keyup", + "name": "keypress", "parameters": [ { "flags": { @@ -31929,13 +32604,32 @@ To find a specific row use the \`findRow(n)\` function as chaining \`findRows(). }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.matches", + "name": "AbstractWrapper.keyup", + }, + "name": "keyup", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyCode", + "typeName": "KeyCode", + }, + ], + "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.matches", }, "name": "matches", "parameters": [ @@ -31948,12 +32642,12 @@ To find a specific row use the \`findRow(n)\` function as chaining \`findRows(). }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "AttributeEditorWrapper", + "name": "AutosuggestDropdownWrapper", }, { "methods": [ @@ -31964,8 +32658,8 @@ To find a specific row use the \`findRow(n)\` function as chaining \`findRows(). "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -31985,8 +32679,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -32004,8 +32698,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -32023,8 +32722,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -32042,8 +32746,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -32056,28 +32765,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -32093,12 +32802,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -32116,23 +32830,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -32140,173 +32858,17 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "description": "Returns all the selected options.", - "name": "findDisabledOptions", - "parameters": [], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "OptionWrapper", - "type": "reference", - }, - ], - }, - }, - { - "name": "findFooterRegion", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findHighlightedAriaLiveRegion", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns highlighted text fragments from all of the options. -Options get highlighted when they match the value of the input field.", - "name": "findHighlightedMatches", - "parameters": [], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "name": "findHighlightedOption", - "parameters": [], - "returnType": { - "name": "OptionWrapper | null", - "type": "union", - }, - }, - { - "name": "findOpenDropdown", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns an option from the dropdown.", - "name": "findOption", - "parameters": [ - { - "description": " -1-based index of the option to select. -", - "flags": { - "isOptional": false, - }, - "name": "optionIndex", - "typeName": "number", - }, - ], - "returnType": { - "name": "OptionWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns an option from the autosuggest by it's value", - "name": "findOptionByValue", - "parameters": [ - { - "description": " -The 'value' of the option. -", - "flags": { - "isOptional": false, - }, - "name": "value", - "typeName": "string", - }, - ], - "returnType": { - "name": "OptionWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns an option from the dropdown.", - "name": "findOptionInGroup", - "parameters": [ - { - "description": " -1-based index of the group to select an option in.", - "flags": { - "isOptional": false, - }, - "name": "groupIndex", - "typeName": "number", - }, - { - "description": " -1-based index of the option to select. -", - "flags": { - "isOptional": false, - }, - "name": "optionIndex", - "typeName": "number", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "OptionWrapper | null", - "type": "union", - }, - }, - { - "name": "findOptions", - "parameters": [], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "OptionWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Use this element to scroll through the list of options", - "name": "findOptionsContainer", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { @@ -32324,8 +32886,8 @@ The 'value' of the option. }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -32335,8 +32897,8 @@ The 'value' of the option. "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -32346,8 +32908,8 @@ The 'value' of the option. "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -32365,8 +32927,27 @@ The 'value' of the option. }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -32384,8 +32965,8 @@ The 'value' of the option. }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -32403,8 +32984,8 @@ The 'value' of the option. }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -32422,24 +33003,24 @@ The 'value' of the option. }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "AutosuggestDropdownWrapper", + "name": "BadgeWrapper", }, { "methods": [ { "inheritedFrom": { - "name": "BaseInputWrapper.blur", + "name": "AbstractWrapper.blur", }, "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -32459,8 +33040,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -32478,8 +33059,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -32497,8 +33083,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -32516,8 +33107,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -32530,28 +33126,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -32567,12 +33163,51 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], + }, + }, + { + "description": "Returns a focusable element that controls keyboard interactions.", + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findApplication", + }, + "name": "findApplication", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "description": "Returns an array of bar groups, which are used for mouse navigation if a chart contains bar series.", + "inheritedFrom": { + "name": "MixedLineBarChartWrapper.findBarGroups", + }, + "name": "findBarGroups", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -32590,34 +33225,43 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "inheritedFrom": { - "name": "InputWrapper.findClearButton", + "name": "BaseCartesianChartWrapper.findChart", }, - "name": "findClearButton", + "name": "findChart", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -32625,348 +33269,319 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "description": "", - "name": "findDropdown", - "parameters": [ - { - "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], - "returnType": { - "name": "AutosuggestDropdownWrapper", - "type": "reference", + "inheritedFrom": { + "name": "CommonChartWrapper.findDefaultFilter", }, - }, - { - "description": "", - "name": "findEnteredTextOption", - "parameters": [ - { - "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], + "name": "findDefaultFilter", + "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ChartFilterWrapper", }, }, { - "description": "", - "name": "findErrorRecoveryButton", - "parameters": [ - { - "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], + "inheritedFrom": { + "name": "CommonChartWrapper.findDetailPopover", + }, + "name": "findDetailPopover", + "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ChartPopoverWrapper", }, }, { "inheritedFrom": { - "name": "BaseInputWrapper.findNativeInput", + "name": "BaseCartesianChartWrapper.findFilterContainer", }, - "name": "findNativeInput", + "name": "findFilterContainer", "parameters": [], "returnType": { + "isNullable": true, "name": "ElementWrapper", - "type": "reference", "typeArguments": [ { - "name": "HTMLInputElement", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "description": "", - "name": "findStatusIndicator", - "parameters": [ - { - "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findHighlightedSeries", + }, + "name": "findHighlightedSeries", + "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", + "name": "CommonChartWrapper.findLegend", }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], + "name": "findLegend", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": true, + "name": "ChartLegendWrapper", }, }, { + "description": "Returns an array of chart series. Note that thresholds count as series as well.", "inheritedFrom": { - "name": "BaseInputWrapper.focus", + "name": "BaseCartesianChartWrapper.findSeries", }, - "name": "focus", + "name": "findSeries", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { "inheritedFrom": { - "name": "AbstractWrapper.getElement", + "name": "CommonChartWrapper.findStatusContainer", }, - "name": "getElement", + "name": "findStatusContainer", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "description": "Gets the value of the component. -Returns the current value of the input. -", "inheritedFrom": { - "name": "BaseInputWrapper.getInputValue", + "name": "BaseCartesianChartWrapper.findXAxisTitle", }, - "name": "getInputValue", + "name": "findXAxisTitle", "parameters": [], "returnType": { - "name": "string", - "type": "intrinsic", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { "inheritedFrom": { - "name": "BaseInputWrapper.isDisabled", + "name": "BaseCartesianChartWrapper.findXTicks", }, - "name": "isDisabled", + "name": "findXTicks", "parameters": [], "returnType": { - "name": "boolean", - "type": "intrinsic", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keydown", + "name": "BaseCartesianChartWrapper.findYAxisTitle", }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], + "name": "findYAxisTitle", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keypress", + "name": "BaseCartesianChartWrapper.findYTicks", }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], + "name": "findYTicks", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keyup", + "name": "AbstractWrapper.fireEvent", }, - "name": "keyup", + "name": "fireEvent", "parameters": [ { "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "event", + "typeName": "Event", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.matches", + "name": "AbstractWrapper.focus", }, - "name": "matches", + "name": "focus", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.getElement", + }, + "name": "getElement", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementType", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", "parameters": [ { "flags": { "isOptional": false, }, - "name": "selector", - "typeName": "string", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Selects a suggestion from the dropdown by simulating mouse events.", - "name": "selectSuggestion", + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", "parameters": [ { - "description": " -1-based index of the suggestion to select.", - "flags": { - "isOptional": false, - }, - "name": "index", - "typeName": "number", - }, - { - "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", "flags": { "isOptional": false, }, - "name": "options", + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { - "description": "Selects a suggestion from the dropdown by simulating mouse events.", - "name": "selectSuggestionByValue", + "inheritedFrom": { + "name": "AbstractWrapper.keypress", + }, + "name": "keypress", "parameters": [ { - "description": " -value of suggestion to select", "flags": { "isOptional": false, }, - "name": "value", - "typeName": "string", + "name": "keyCode", + "typeName": "KeyCode", }, + ], + "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keyup", + }, + "name": "keyup", + "parameters": [ { - "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", "flags": { "isOptional": false, }, - "name": "options", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { - "description": "Sets the value of the component and calls the \`onChange\` handler", "inheritedFrom": { - "name": "BaseInputWrapper.setInputValue", + "name": "AbstractWrapper.matches", }, - "name": "setInputValue", + "name": "matches", "parameters": [ { - "description": " -The value the input is set to. -", "flags": { "isOptional": false, }, - "name": "value", + "name": "selector", "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": true, + "name": "this", }, }, ], - "name": "AutosuggestWrapper", + "name": "BarChartWrapper", }, { "methods": [ @@ -32977,8 +33592,8 @@ The value the input is set to. "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -32998,8 +33613,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -33017,8 +33632,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -33036,8 +33656,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -33055,8 +33680,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -33069,28 +33699,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -33106,12 +33736,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -33129,23 +33764,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -33153,244 +33792,77 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "description": "Returns all the selected options.", - "inheritedFrom": { - "name": "AutosuggestDropdownWrapper.findDisabledOptions", - }, - "name": "findDisabledOptions", - "parameters": [], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "OptionWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AutosuggestDropdownWrapper.findFooterRegion", - }, - "name": "findFooterRegion", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AutosuggestDropdownWrapper.findHighlightedAriaLiveRegion", - }, - "name": "findHighlightedAriaLiveRegion", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns highlighted text fragments from all of the options. -Options get highlighted when they match the value of the input field.", - "inheritedFrom": { - "name": "AutosuggestDropdownWrapper.findHighlightedMatches", - }, - "name": "findHighlightedMatches", - "parameters": [], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AutosuggestDropdownWrapper.findHighlightedOption", - }, - "name": "findHighlightedOption", - "parameters": [], - "returnType": { - "name": "OptionWrapper | null", - "type": "union", - }, - }, - { - "name": "findOpenDropdown", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns an option from the dropdown.", - "inheritedFrom": { - "name": "AutosuggestDropdownWrapper.findOption", - }, - "name": "findOption", - "parameters": [ - { - "description": " -1-based index of the option to select. -", - "flags": { - "isOptional": false, - }, - "name": "optionIndex", - "typeName": "number", - }, - ], - "returnType": { - "name": "OptionWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns an option from the autosuggest by it's value", - "inheritedFrom": { - "name": "AutosuggestDropdownWrapper.findOptionByValue", - }, - "name": "findOptionByValue", - "parameters": [ - { - "description": " -The 'value' of the option. -", - "flags": { - "isOptional": false, - }, - "name": "value", - "typeName": "string", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "OptionWrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "description": "Returns an option from the dropdown.", "inheritedFrom": { - "name": "AutosuggestDropdownWrapper.findOptionInGroup", + "name": "AbstractWrapper.fireEvent", }, - "name": "findOptionInGroup", + "name": "fireEvent", "parameters": [ { - "description": " -1-based index of the group to select an option in.", - "flags": { - "isOptional": false, - }, - "name": "groupIndex", - "typeName": "number", - }, - { - "description": " -1-based index of the option to select. -", "flags": { "isOptional": false, }, - "name": "optionIndex", - "typeName": "number", + "name": "event", + "typeName": "Event", }, ], "returnType": { - "name": "OptionWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { "inheritedFrom": { - "name": "AutosuggestDropdownWrapper.findOptions", + "name": "AbstractWrapper.focus", }, - "name": "findOptions", + "name": "focus", "parameters": [], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "OptionWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Use this element to scroll through the list of options", "inheritedFrom": { - "name": "AutosuggestDropdownWrapper.findOptionsContainer", + "name": "AbstractWrapper.getElement", }, - "name": "findOptionsContainer", + "name": "getElement", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementType", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", + "name": "AbstractWrapper.keydown", }, - "name": "fireEvent", + "name": "keydown", "parameters": [ { "flags": { "isOptional": false, }, - "name": "event", - "typeName": "Event", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "HTMLElement", - "type": "reference", }, }, { @@ -33403,13 +33875,13 @@ The 'value' of the option. "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -33427,8 +33899,8 @@ The 'value' of the option. }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -33446,8 +33918,8 @@ The 'value' of the option. }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -33465,12 +33937,12 @@ The 'value' of the option. }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "PortalAutosuggestDropdownWrapper", + "name": "BoxWrapper", }, { "methods": [ @@ -33481,8 +33953,8 @@ The 'value' of the option. "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -33502,8 +33974,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -33521,8 +33993,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -33540,8 +34017,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -33559,8 +34041,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -33573,28 +34060,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -33610,12 +34097,58 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", + }, + ], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], + }, + }, + { + "description": "Returns an item for a given index. Note that this may return the 'current' page item for backwards compatibility, +even though it is not technically a link.", + "name": "findBreadcrumbLink", + "parameters": [ + { + "description": "1-based item index", + "flags": { + "isOptional": false, + }, + "name": "index", + "typeName": "number", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "description": "Returns all breadcrumb items. Note that this includes the 'current' page item for backwards compatibility, +even though it is not technically a link. + +To find a specific item use the \`findBreadcrumbLink(n)\` function as chaining \`findBreadcrumbLinks().get(n)\` can return unexpected results.", + "name": "findBreadcrumbLinks", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -33633,23 +34166,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -33657,18 +34194,25 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", + }, + }, + { + "name": "findDropdown", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ButtonDropdownWrapper", }, }, { @@ -33686,8 +34230,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -33697,8 +34241,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -33708,8 +34252,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLSpanElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -33727,8 +34271,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -33746,8 +34309,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -33765,8 +34328,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -33784,12 +34347,12 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "BadgeWrapper", + "name": "BreadcrumbGroupWrapper", }, { "methods": [ @@ -33800,8 +34363,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -33821,8 +34384,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -33840,8 +34403,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -33859,8 +34427,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -33878,8 +34451,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -33892,28 +34470,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -33929,40 +34507,15 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns a focusable element that controls keyboard interactions.", - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findApplication", - }, - "name": "findApplication", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns an array of bar groups, which are used for mouse navigation if a chart contains bar series.", - "inheritedFrom": { - "name": "MixedLineBarChartWrapper.findBarGroups", - }, - "name": "findBarGroups", - "parameters": [], - "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "ElementWrapper", - "type": "reference", + "name": "NewElementType", }, ], }, @@ -33982,34 +34535,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findChart", - }, - "name": "findChart", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -34017,156 +34563,54 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "inheritedFrom": { - "name": "CommonChartWrapper.findDefaultFilter", - }, - "name": "findDefaultFilter", - "parameters": [], - "returnType": { - "name": "ChartFilterWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "CommonChartWrapper.findDetailPopover", - }, - "name": "findDetailPopover", - "parameters": [], - "returnType": { - "name": "ChartPopoverWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findFilterContainer", - }, - "name": "findFilterContainer", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findHighlightedSeries", - }, - "name": "findHighlightedSeries", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "CommonChartWrapper.findLegend", - }, - "name": "findLegend", - "parameters": [], - "returnType": { - "name": "ChartLegendWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns an array of chart series. Note that thresholds count as series as well.", - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findSeries", - }, - "name": "findSeries", + "name": "findDisabledReason", "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "ElementWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "inheritedFrom": { - "name": "CommonChartWrapper.findStatusContainer", - }, - "name": "findStatusContainer", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findXAxisTitle", - }, - "name": "findXAxisTitle", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findXTicks", - }, - "name": "findXTicks", + "name": "findLoadingIndicator", "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "ElementWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findYAxisTitle", - }, - "name": "findYAxisTitle", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findYTicks", - }, - "name": "findYTicks", + "name": "findTextRegion", "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "ElementWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, @@ -34186,8 +34630,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -34197,8 +34641,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -34208,8 +34652,16 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", + }, + }, + { + "name": "isDisabled", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "boolean", }, }, { @@ -34227,8 +34679,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -34246,8 +34717,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -34265,8 +34736,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -34284,12 +34755,12 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "BarChartWrapper", + "name": "ButtonWrapper", }, { "methods": [ @@ -34300,8 +34771,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -34321,8 +34792,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -34340,8 +34811,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -34359,8 +34835,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -34378,8 +34859,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -34392,28 +34878,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -34429,12 +34915,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -34452,23 +34943,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -34476,18 +34971,172 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", + }, + ], + "returnType": { + "isNullable": true, + "name": "Wrapper", + }, + }, + { + "description": "Finds the disabled reason tooltip for a dropdown item. Returns null if no disabled item with \`disabledReason\` is highlighted.", + "name": "findDisabledReason", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "description": "Finds an expandable category in the open dropdown by category id. Returns null if there is no open dropdown. + +This utility does not open the dropdown. To find dropdown items, call \`openDropdown()\` first.", + "name": "findExpandableCategoryById", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "id", + "typeName": "string", + }, + ], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "description": "Finds the highlighted item in the open dropdown. Returns null if there is no open dropdown. + +This utility does not open the dropdown. To find dropdown items, call \`openDropdown()\` first.", + "name": "findHighlightedItem", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "description": "Finds an item in the open dropdown by item id. Returns null if there is no open dropdown. + +This utility does not open the dropdown. To find dropdown items, call \`openDropdown()\` first.", + "name": "findItemById", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "id", + "typeName": "string", + }, + ], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "description": "Finds \`checked\` value of item in the open dropdown by item id. Returns null if there is no open dropdown or the item is not a checkbox item. + +This utility does not open the dropdown. To find dropdown items, call \`openDropdown()\` first.", + "name": "findItemCheckedById", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "id", + "typeName": "string", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "string", + }, + }, + { + "description": "Finds all the items in the open dropdown. Returns empty array if there is no open dropdown. + +This utility does not open the dropdown. To find dropdown items, call \`openDropdown()\` first.", + "name": "findItems", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], + }, + }, + { + "name": "findMainAction", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ButtonWrapper", + }, + }, + { + "name": "findNativeButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLButtonElement", + }, + ], + }, + }, + { + "name": "findOpenDropdown", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findTriggerButton", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ButtonWrapper", }, }, { @@ -34505,8 +35154,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -34516,8 +35165,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -34527,8 +35176,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLSpanElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -34546,8 +35195,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -34565,8 +35233,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -34584,8 +35252,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -34603,12 +35271,20 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", + }, + }, + { + "name": "openDropdown", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "void", }, }, ], - "name": "BoxWrapper", + "name": "ButtonDropdownWrapper", }, { "methods": [ @@ -34619,8 +35295,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -34640,8 +35316,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -34659,8 +35335,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -34678,8 +35359,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -34697,8 +35383,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -34711,28 +35402,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -34748,50 +35439,34 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { - "description": "Returns an item for a given index. Note that this may return the 'current' page item for backwards compatibility, -even though it is not technically a link.", - "name": "findBreadcrumbLink", + "description": "Finds a button item by its id.", + "name": "findButtonById", "parameters": [ { - "description": " -1-based item index -", "flags": { "isOptional": false, }, - "name": "index", - "typeName": "number", + "name": "id", + "typeName": "string", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns all breadcrumb items. Note that this includes the 'current' page item for backwards compatibility, -even though it is not technically a link. -To find a specific item use the \`findBreadcrumbLink(n)\` function as chaining \`findBreadcrumbLinks().get(n)\` can return unexpected results.", - "name": "findBreadcrumbLinks", - "parameters": [], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], + "isNullable": true, + "name": "ButtonWrapper", }, }, { @@ -34809,23 +35484,27 @@ To find a specific item use the \`findBreadcrumbLink(n)\` function as chaining \ }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -34833,110 +35512,199 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "name": "findDropdown", - "parameters": [], - "returnType": { - "name": "ButtonDropdownWrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", + "description": "Finds a file input item by its id.", + "name": "findFileInputById", "parameters": [ { "flags": { "isOptional": false, }, - "name": "event", - "typeName": "Event", + "name": "id", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": true, + "name": "FileInputWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", + "description": "Finds all button and menu items.", + "name": "findItems", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", + "description": "Finds a menu item by its id.", + "name": "findMenuById", "parameters": [ { "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "id", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": true, + "name": "ButtonDropdownWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", + "description": "Finds a toggle button item by its id.", + "name": "findToggleButtonById", "parameters": [ { "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "id", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": true, + "name": "ToggleButtonWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.keyup", + "description": "Finds the currently opened tooltip.", + "name": "findTooltip", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.fireEvent", + }, + "name": "fireEvent", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "event", + "typeName": "Event", + }, + ], + "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.focus", + }, + "name": "focus", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.getElement", + }, + "name": "getElement", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementType", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyCode", + "typeName": "KeyCode", + }, + ], + "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keypress", + }, + "name": "keypress", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyCode", + "typeName": "KeyCode", + }, + ], + "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keyup", }, "name": "keyup", "parameters": [ @@ -34949,8 +35717,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -34968,12 +35736,12 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "BreadcrumbGroupWrapper", + "name": "ButtonGroupWrapper", }, { "methods": [ @@ -34984,8 +35752,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -35005,8 +35773,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -35024,8 +35792,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -35043,8 +35816,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -35062,8 +35840,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -35076,28 +35859,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -35113,12 +35896,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -35136,23 +35924,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -35160,150 +35952,103 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "description": "Finds the disabled reason tooltip for a dropdown item. Returns null if no disabled item with \`disabledReason\` is highlighted.", - "name": "findDisabledReason", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Finds an expandable category in the open dropdown by category id. Returns null if there is no open dropdown. -This utility does not open the dropdown. To find dropdown items, call \`openDropdown()\` first. -", - "name": "findExpandableCategoryById", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "id", - "typeName": "string", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Finds the highlighted item in the open dropdown. Returns null if there is no open dropdown. -This utility does not open the dropdown. To find dropdown items, call \`openDropdown()\` first. -", - "name": "findHighlightedItem", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "description": "Finds an item in the open dropdown by item id. Returns null if there is no open dropdown. -This utility does not open the dropdown. To find dropdown items, call \`openDropdown()\` first. -", - "name": "findItemById", + "description": "Returns a date container on the calendar.", + "name": "findDateAt", "parameters": [ { + "description": "1-based row index of the day or month.", "flags": { "isOptional": false, }, - "name": "id", - "typeName": "string", + "name": "row", + "typeName": "number", }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Finds \`checked\` value of item in the open dropdown by item id. Returns null if there is no open dropdown or the item is not a checkbox item. -This utility does not open the dropdown. To find dropdown items, call \`openDropdown()\` first. -", - "name": "findItemCheckedById", - "parameters": [ { + "description": "1-based column index of the day or month.", "flags": { "isOptional": false, }, - "name": "id", - "typeName": "string", + "name": "column", + "typeName": "number", }, ], "returnType": { - "name": "string | null", - "type": "union", + "isNullable": false, + "name": "CalendarDateWrapper", }, }, { - "description": "Finds all the items in the open dropdown. Returns empty array if there is no open dropdown. -This utility does not open the dropdown. To find dropdown items, call \`openDropdown()\` first. -", - "name": "findItems", + "name": "findHeader", "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", "typeArguments": [ { - "name": "ElementWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "name": "findMainAction", + "name": "findNextButton", "parameters": [], "returnType": { - "name": "null | ButtonWrapper", - "type": "union", + "isNullable": false, + "name": "ButtonWrapper", }, }, { - "name": "findNativeButton", + "description": "Alias for findNextButton for compatibility with previous versions", + "name": "findNextMonthButton", "parameters": [], "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "HTMLButtonElement", - "type": "reference", - }, - ], + "isNullable": false, + "name": "ButtonWrapper", }, }, { - "name": "findOpenDropdown", + "name": "findPreviousButton", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ButtonWrapper", }, }, { - "name": "findTriggerButton", + "description": "Alias for findPreviousButton for compatibility with previous versions", + "name": "findPreviousMonthButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ButtonWrapper", + }, + }, + { + "name": "findSelectedDate", "parameters": [], "returnType": { - "name": "ButtonWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { @@ -35321,8 +36066,8 @@ This utility does not open the dropdown. To find dropdown items, call \`openDrop }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -35332,8 +36077,8 @@ This utility does not open the dropdown. To find dropdown items, call \`openDrop "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -35343,8 +36088,8 @@ This utility does not open the dropdown. To find dropdown items, call \`openDrop "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -35362,8 +36107,27 @@ This utility does not open the dropdown. To find dropdown items, call \`openDrop }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -35381,8 +36145,8 @@ This utility does not open the dropdown. To find dropdown items, call \`openDrop }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -35400,8 +36164,8 @@ This utility does not open the dropdown. To find dropdown items, call \`openDrop }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -35419,20 +36183,12 @@ This utility does not open the dropdown. To find dropdown items, call \`openDrop }, ], "returnType": { - "name": "this | null", - "type": "union", - }, - }, - { - "name": "openDropdown", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": true, + "name": "this", }, }, ], - "name": "ButtonDropdownWrapper", + "name": "CalendarWrapper", }, { "methods": [ @@ -35443,8 +36199,8 @@ This utility does not open the dropdown. To find dropdown items, call \`openDrop "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -35464,8 +36220,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -35483,8 +36239,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -35502,8 +36263,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -35521,8 +36287,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -35535,28 +36306,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -35572,29 +36343,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Finds a button item by its id.", - "name": "findButtonById", - "parameters": [ - { - "flags": { - "isOptional": false, + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", }, - "name": "id", - "typeName": "string", - }, - ], - "returnType": { - "name": "null | ButtonWrapper", - "type": "union", + ], }, }, { @@ -35612,23 +36371,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -35636,95 +36399,32 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "description": "Finds a file input item by its id.", - "name": "findFileInputById", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "id", - "typeName": "string", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "null | FileInputWrapper", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "description": "Finds all button and menu items.", - "name": "findItems", + "name": "findDisabledReason", "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "ElementWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, - { - "description": "Finds a menu item by its id.", - "name": "findMenuById", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "id", - "typeName": "string", - }, - ], - "returnType": { - "name": "null | ButtonDropdownWrapper", - "type": "union", - }, - }, - { - "description": "Finds a toggle button item by its id.", - "name": "findToggleButtonById", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "id", - "typeName": "string", - }, - ], - "returnType": { - "name": "null | ToggleButtonWrapper", - "type": "union", - }, - }, - { - "description": "Finds the currently opened tooltip.", - "name": "findTooltip", - "parameters": [], - "returnType": { - "name": "null | ElementWrapper", - "type": "union", - }, - }, { "inheritedFrom": { "name": "AbstractWrapper.fireEvent", @@ -35740,8 +36440,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -35751,8 +36451,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -35762,8 +36462,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -35781,8 +36481,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -35800,8 +36519,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -35819,8 +36538,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -35838,12 +36557,12 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "ButtonGroupWrapper", + "name": "CalendarDateWrapper", }, { "methods": [ @@ -35854,8 +36573,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -35875,8 +36594,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -35894,8 +36613,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -35913,8 +36637,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -35932,8 +36661,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -35946,28 +36680,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -35983,12 +36717,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -36006,23 +36745,35 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], + }, + }, + { + "name": "findCollectionPreferences", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "CollectionPreferencesWrapper", }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -36030,42 +36781,126 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "name": "findDisabledReason", + "description": "Alias for findEmptySlot method for compatibility with previous versions", + "name": "findEmptyRegion", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "name": "findLoadingIndicator", + "name": "findEmptySlot", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "name": "findTextRegion", + "name": "findHeader", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "description": "Alias for findHeader method for compatibility with previous versions", + "name": "findHeaderRegion", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findItems", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "CardWrapper", + }, + ], + }, + }, + { + "name": "findLoadingText", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findPagination", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "PaginationWrapper", + }, + }, + { + "name": "findSelectedItems", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "CardWrapper", + }, + ], + }, + }, + { + "name": "findTextFilter", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "TextFilterWrapper", }, }, { @@ -36083,8 +36918,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -36094,8 +36929,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -36105,16 +36940,27 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLButtonElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { - "name": "isDisabled", - "parameters": [], + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyCode", + "typeName": "KeyCode", + }, + ], "returnType": { - "name": "boolean", - "type": "intrinsic", + "isNullable": false, + "name": "void", }, }, { @@ -36127,13 +36973,13 @@ Component's wrapper class", "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -36151,8 +36997,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -36170,8 +37016,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -36189,12 +37035,12 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "ButtonWrapper", + "name": "CardsWrapper", }, { "methods": [ @@ -36205,8 +37051,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -36226,8 +37072,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -36245,8 +37091,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -36264,8 +37115,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -36283,8 +37139,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -36297,28 +37158,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -36334,12 +37195,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -36357,23 +37223,40 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], + }, + }, + { + "name": "findCardHeader", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -36381,26 +37264,46 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "name": "findDisabledReason", + "description": "Note: for integration/selector-based tests you should add \`1\` to the expected section index, +for example, \`.findSections().get(sectionIndex+1)\`. The \`get\` call in this context +is '2-indexed', that is, the first section in a card has an index of \`2\`.", + "name": "findSections", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "CardSectionWrapper", + }, + ], + }, + }, + { + "name": "findSelectionArea", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { @@ -36418,8 +37321,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -36429,8 +37332,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -36440,8 +37343,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -36459,8 +37362,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -36478,8 +37400,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -36497,8 +37419,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -36516,12 +37438,12 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "CalendarDateWrapper", + "name": "CardWrapper", }, { "methods": [ @@ -36532,8 +37454,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -36553,8 +37475,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -36572,8 +37494,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -36591,8 +37518,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -36610,8 +37542,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -36624,28 +37561,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -36661,12 +37598,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -36684,23 +37626,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -36708,97 +37654,43 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "description": "Returns a date container on the calendar.", - "name": "findDateAt", - "parameters": [ - { - "description": " -1-based row index of the day or month.", - "flags": { - "isOptional": false, - }, - "name": "row", - "typeName": "number", - }, - { - "description": " -1-based column index of the day or month. -", - "flags": { - "isOptional": false, - }, - "name": "column", - "typeName": "number", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "CalendarDateWrapper", - "type": "reference", + "isNullable": true, + "name": "Wrapper", }, }, { - "name": "findHeader", + "name": "findContent", "parameters": [], "returnType": { + "isNullable": true, "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findNextButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - }, - }, - { - "description": "Alias for findNextButton for compatibility with previous versions", - "name": "findNextMonthButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - }, - }, - { - "name": "findPreviousButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - }, - }, - { - "description": "Alias for findPreviousButton for compatibility with previous versions", - "name": "findPreviousMonthButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "name": "findSelectedDate", + "name": "findSectionHeader", "parameters": [], "returnType": { + "isNullable": true, "name": "ElementWrapper", - "type": "reference", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { @@ -36816,8 +37708,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -36827,8 +37719,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -36838,8 +37730,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -36857,8 +37749,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -36876,8 +37787,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -36895,8 +37806,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -36914,12 +37825,12 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "CalendarWrapper", + "name": "CardSectionWrapper", }, { "methods": [ @@ -36930,8 +37841,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -36951,8 +37862,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -36970,8 +37881,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -36989,8 +37905,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -37008,8 +37929,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -37022,28 +37948,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -37059,12 +37985,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -37082,23 +38013,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -37106,34 +38041,56 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "name": "findContent", + "name": "findDescription", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "name": "findSectionHeader", + "name": "findLabel", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findNativeInput", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLInputElement", + }, + ], }, }, { @@ -37151,8 +38108,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -37162,8 +38119,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -37173,8 +38130,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -37192,8 +38149,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -37211,8 +38187,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -37230,8 +38206,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -37249,12 +38225,12 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "CardSectionWrapper", + "name": "CheckboxWrapper", }, { "methods": [ @@ -37265,8 +38241,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -37286,8 +38262,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -37305,8 +38281,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -37324,8 +38305,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -37343,10 +38329,15 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", - }, - }, + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], + }, + }, { "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. If no CSS selector is specified, returns all of the components that match the specified component type. @@ -37357,28 +38348,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -37394,12 +38385,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -37417,31 +38413,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findCardHeader", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -37449,43 +38441,129 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "description": "Note: for integration/selector-based tests you should add \`1\` to the expected section index, -for example, \`.findSections().get(sectionIndex+1)\`. The \`get\` call in this context -is '2-indexed', that is, the first section in a card has an index of \`2\`.", - "name": "findSections", + "name": "findEditor", "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "CardSectionWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "name": "findSelectionArea", + "name": "findErrorScreen", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findErrorsTab", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findLoadingScreen", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findNativeTextArea", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLTextAreaElement", + }, + ], + }, + }, + { + "name": "findPane", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findSettingsButton", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ButtonWrapper", + }, + }, + { + "name": "findStatusBar", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findWarningsTab", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { @@ -37503,8 +38581,8 @@ is '2-indexed', that is, the first section in a card has an index of \`2\`.", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -37514,8 +38592,8 @@ is '2-indexed', that is, the first section in a card has an index of \`2\`.", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -37525,8 +38603,8 @@ is '2-indexed', that is, the first section in a card has an index of \`2\`.", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -37544,8 +38622,27 @@ is '2-indexed', that is, the first section in a card has an index of \`2\`.", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -37563,8 +38660,8 @@ is '2-indexed', that is, the first section in a card has an index of \`2\`.", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -37582,8 +38679,8 @@ is '2-indexed', that is, the first section in a card has an index of \`2\`.", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -37601,12 +38698,30 @@ is '2-indexed', that is, the first section in a card has an index of \`2\`.", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", + }, + }, + { + "description": "Sets the value of the component and calls the \`onChange\` handler", + "name": "setValue", + "parameters": [ + { + "description": "The value the input is set to.", + "flags": { + "isOptional": false, + }, + "name": "value", + "typeName": "string", + }, + ], + "returnType": { + "isNullable": false, + "name": "void", }, }, ], - "name": "CardWrapper", + "name": "CodeEditorWrapper", }, { "methods": [ @@ -37617,8 +38732,8 @@ is '2-indexed', that is, the first section in a card has an index of \`2\`.", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -37638,8 +38753,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -37657,8 +38772,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -37676,8 +38796,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -37695,8 +38820,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -37709,28 +38839,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -37746,12 +38876,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -37769,31 +38904,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findCollectionPreferences", - "parameters": [], - "returnType": { - "name": "CollectionPreferencesWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -37801,104 +38932,33 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "description": "Alias for findEmptySlot method for compatibility with previous versions", - "name": "findEmptyRegion", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findEmptySlot", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findHeader", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Alias for findHeader method for compatibility with previous versions", - "name": "findHeaderRegion", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findItems", - "parameters": [], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "CardWrapper", - "type": "reference", - }, - ], - }, - }, - { - "name": "findLoadingText", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findPagination", - "parameters": [], - "returnType": { - "name": "PaginationWrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "name": "findSelectedItems", + "name": "findModal", "parameters": [], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "CardWrapper", - "type": "reference", - }, - ], + "isNullable": true, + "name": "PreferencesModalWrapper", }, }, { - "name": "findTextFilter", + "name": "findTriggerButton", "parameters": [], "returnType": { - "name": "TextFilterWrapper | null", - "type": "union", + "isNullable": false, + "name": "ButtonWrapper", }, }, { @@ -37916,8 +38976,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -37927,8 +38987,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -37938,8 +38998,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -37957,8 +39017,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -37976,8 +39055,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -37995,8 +39074,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -38014,12 +39093,12 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "CardsWrapper", + "name": "CollectionPreferencesWrapper", }, { "methods": [ @@ -38030,8 +39109,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -38051,8 +39130,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -38070,8 +39149,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -38089,8 +39173,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -38108,8 +39197,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -38122,28 +39216,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -38159,12 +39253,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -38182,23 +39281,35 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], + }, + }, + { + "name": "findCancelButton", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ButtonWrapper", }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -38206,134 +39317,296 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "name": "findDescription", + "name": "findConfirmButton", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ButtonWrapper", }, }, { - "name": "findLabel", + "inheritedFrom": { + "name": "ModalWrapper.findContent", + }, + "name": "findContent", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "name": "findNativeInput", + "name": "findContentBefore", "parameters": [], "returnType": { + "isNullable": true, "name": "ElementWrapper", - "type": "reference", "typeArguments": [ { - "name": "HTMLInputElement", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", + "name": "findContentDensityPreference", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "CheckboxWrapper", }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], + }, + { + "name": "findContentDisplayPreference", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": true, + "name": "ContentDisplayPreferenceWrapper", + }, + }, + { + "name": "findCustomPreference", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { "inheritedFrom": { - "name": "AbstractWrapper.focus", + "name": "ModalWrapper.findDismissButton", }, - "name": "focus", + "name": "findDismissButton", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { "inheritedFrom": { - "name": "AbstractWrapper.getElement", + "name": "ModalWrapper.findFooter", }, - "name": "getElement", + "name": "findFooter", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keydown", + "name": "ModalWrapper.findHeader", }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], + "name": "findHeader", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", + "name": "findPageSizePreference", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "PageSizePreferenceWrapper", }, - "name": "keypress", + }, + { + "name": "findStickyColumnsPreference", "parameters": [ { + "defaultValue": "'first'", "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "firstOrLast", + "typeName": ""first" | "last"", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": true, + "name": "StickyColumnsPreferenceWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.keyup", - }, - "name": "keyup", + "name": "findStripedRowsPreference", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "CheckboxWrapper", + }, + }, + { + "name": "findVisibleContentPreference", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "VisibleContentPreferenceWrapper", + }, + }, + { + "name": "findWrapLinesPreference", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "CheckboxWrapper", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.fireEvent", + }, + "name": "fireEvent", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "event", + "typeName": "Event", + }, + ], + "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.focus", + }, + "name": "focus", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.getElement", + }, + "name": "getElement", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementType", + }, + }, + { + "inheritedFrom": { + "name": "ModalWrapper.isVisible", + }, + "name": "isVisible", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "boolean", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyCode", + "typeName": "KeyCode", + }, + ], + "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keypress", + }, + "name": "keypress", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyCode", + "typeName": "KeyCode", + }, + ], + "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keyup", + }, + "name": "keyup", "parameters": [ { "flags": { @@ -38344,8 +39617,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -38363,12 +39636,12 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "CheckboxWrapper", + "name": "PreferencesModalWrapper", }, { "methods": [ @@ -38379,8 +39652,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -38400,8 +39673,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -38419,8 +39692,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -38438,8 +39716,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -38457,8 +39740,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -38471,28 +39759,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -38508,12 +39796,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -38531,23 +39824,53 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], + }, + }, + { + "description": "Returns a column from the grid for a given index.", + "inheritedFrom": { + "name": "GridWrapper.findColumn", + }, + "name": "findColumn", + "parameters": [ + { + "description": "1-based index of the column to return.", + "flags": { + "isOptional": false, + }, + "name": "columnIndex", + "typeName": "number", + }, + ], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLDivElement", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -38555,90 +39878,17 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "name": "findEditor", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findErrorScreen", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findErrorsTab", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findLoadingScreen", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findNativeTextArea", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findPane", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findSettingsButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper | null", - "type": "union", - }, - }, - { - "name": "findStatusBar", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findWarningsTab", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { @@ -38656,8 +39906,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -38667,8 +39917,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -38678,8 +39928,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -38697,34 +39947,34 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keypress", + "name": "AbstractWrapper.keydown", }, - "name": "keypress", + "name": "keydown", "parameters": [ { "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keyup", + "name": "AbstractWrapper.keypress", }, - "name": "keyup", + "name": "keypress", "parameters": [ { "flags": { @@ -38735,51 +39985,50 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.matches", + "name": "AbstractWrapper.keyup", }, - "name": "matches", + "name": "keyup", "parameters": [ { "flags": { "isOptional": false, }, - "name": "selector", - "typeName": "string", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Sets the value of the component and calls the \`onChange\` handler", - "name": "setValue", + "inheritedFrom": { + "name": "AbstractWrapper.matches", + }, + "name": "matches", "parameters": [ { - "description": " -The value the input is set to. -", "flags": { "isOptional": false, }, - "name": "value", + "name": "selector", "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": true, + "name": "this", }, }, ], - "name": "CodeEditorWrapper", + "name": "ColumnLayoutWrapper", }, { "methods": [ @@ -38790,8 +40039,8 @@ The value the input is set to. "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -38811,8 +40060,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -38830,8 +40079,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -38849,8 +40103,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -38868,8 +40127,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -38882,28 +40146,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -38919,12 +40183,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -38942,23 +40211,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -38966,45 +40239,69 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "description": "Returns the drag handle for the option item.", - "name": "findDragHandle", + "name": "findContent", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findFooter", "parameters": [], "returnType": { + "isNullable": true, "name": "ElementWrapper", - "type": "reference", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "description": "Returns the text label displayed in the option item.", - "name": "findLabel", + "name": "findHeader", "parameters": [], "returnType": { + "isNullable": true, "name": "ElementWrapper", - "type": "reference", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "description": "Returns the visibility toggle for the option item.", - "name": "findVisibilityToggle", + "name": "findMedia", "parameters": [], "returnType": { - "name": "ToggleWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { @@ -39022,8 +40319,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -39033,8 +40330,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -39044,8 +40341,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -39063,8 +40360,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -39082,8 +40398,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -39101,8 +40417,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -39120,12 +40436,12 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "ContentDisplayOptionWrapper", + "name": "ContainerWrapper", }, { "methods": [ @@ -39136,8 +40452,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -39157,8 +40473,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -39176,8 +40492,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -39195,8 +40516,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -39214,8 +40540,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -39228,28 +40559,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -39265,12 +40596,30 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], + }, + }, + { + "name": "findBreadcrumbs", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { @@ -39288,23 +40637,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -39312,89 +40665,69 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "description": "Returns the preference description displayed below the title.", - "name": "findDescription", + "name": "findContent", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "description": "Returns no match with the clear filter button.", - "name": "findNoMatch", + "name": "findHeader", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns an option for a given index.", - "name": "findOptionByIndex", - "parameters": [ - { - "description": " -1-based index of the option to return. -", - "flags": { - "isOptional": false, + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", }, - "name": "index", - "typeName": "number", - }, - ], - "returnType": { - "name": "ContentDisplayOptionWrapper | null", - "type": "union", + ], }, }, { - "description": "Returns options that the user can reorder.", - "name": "findOptions", + "name": "findNotifications", "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", "typeArguments": [ { - "name": "ContentDisplayOptionWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "description": "Returns the text filter input.", - "name": "findTextFilter", - "parameters": [], - "returnType": { - "name": "TextFilterWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the title.", - "name": "findTitle", + "name": "findSecondaryHeader", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { @@ -39412,8 +40745,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -39423,8 +40756,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -39434,8 +40767,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -39453,8 +40786,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -39472,8 +40824,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -39491,8 +40843,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -39510,12 +40862,12 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "ContentDisplayPreferenceWrapper", + "name": "ContentLayoutWrapper", }, { "methods": [ @@ -39526,8 +40878,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -39547,8 +40899,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -39566,8 +40918,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -39585,8 +40942,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -39604,8 +40966,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -39618,28 +40985,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -39655,12 +41022,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -39678,23 +41050,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -39702,34 +41078,75 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "name": "findModal", + "name": "findCopyButton", "parameters": [], "returnType": { - "name": "PreferencesModalWrapper | null", - "type": "union", + "isNullable": false, + "name": "ButtonWrapper", }, }, { - "name": "findTriggerButton", + "description": "Used to get the text displayed next to the copy icon button when \`variant='inline'\`. +Returns either the \`textToCopy\` value or the \`textToDisplay\` value if it has been set.", + "name": "findDisplayedText", "parameters": [], "returnType": { - "name": "ButtonWrapper", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findStatusText", + "parameters": [ + { + "defaultValue": "{ popoverRenderWithPortal: false }", + "flags": { + "isOptional": false, + }, + "name": "options", + "typeName": "{ popoverRenderWithPortal: boolean; }", + }, + ], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findTextToCopy", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { @@ -39747,8 +41164,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -39758,8 +41175,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -39769,8 +41186,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -39788,8 +41205,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -39807,8 +41243,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -39826,8 +41262,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -39845,24 +41281,24 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "CollectionPreferencesWrapper", + "name": "CopyToClipboardWrapper", }, { "methods": [ { "inheritedFrom": { - "name": "AbstractWrapper.blur", + "name": "BaseInputWrapper.blur", }, "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -39882,8 +41318,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -39901,8 +41337,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -39920,8 +41361,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -39939,8 +41385,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -39953,28 +41404,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -39990,12 +41441,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -40013,31 +41469,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findCancelButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -40045,150 +41497,33 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "name": "findConfirmButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "ModalWrapper.findContent", - }, - "name": "findContent", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findContentBefore", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findContentDensityPreference", - "parameters": [], - "returnType": { - "name": "CheckboxWrapper | null", - "type": "union", - }, - }, - { - "name": "findContentDisplayPreference", - "parameters": [], - "returnType": { - "name": "ContentDisplayPreferenceWrapper | null", - "type": "union", - }, - }, - { - "name": "findCustomPreference", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "ModalWrapper.findDismissButton", - }, - "name": "findDismissButton", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "ModalWrapper.findFooter", - }, - "name": "findFooter", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { "inheritedFrom": { - "name": "ModalWrapper.findHeader", + "name": "BaseInputWrapper.findNativeInput", }, - "name": "findHeader", + "name": "findNativeInput", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findPageSizePreference", - "parameters": [], - "returnType": { - "name": "PageSizePreferenceWrapper | null", - "type": "union", - }, - }, - { - "name": "findStickyColumnsPreference", - "parameters": [ - { - "defaultValue": ""first"", - "flags": { - "isOptional": false, + "typeArguments": [ + { + "name": "HTMLInputElement", }, - "name": "firstOrLast", - }, - ], - "returnType": { - "name": "StickyColumnsPreferenceWrapper | null", - "type": "union", - }, - }, - { - "name": "findStripedRowsPreference", - "parameters": [], - "returnType": { - "name": "CheckboxWrapper | null", - "type": "union", - }, - }, - { - "name": "findVisibleContentPreference", - "parameters": [], - "returnType": { - "name": "VisibleContentPreferenceWrapper | null", - "type": "union", - }, - }, - { - "name": "findWrapLinesPreference", - "parameters": [], - "returnType": { - "name": "CheckboxWrapper | null", - "type": "union", + ], }, }, { @@ -40206,19 +41541,19 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.focus", + "name": "BaseInputWrapper.focus", }, "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -40228,19 +41563,33 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { + "description": "Gets the value of the component. + +Returns the current value of the input.", "inheritedFrom": { - "name": "ModalWrapper.isVisible", + "name": "BaseInputWrapper.getInputValue", }, - "name": "isVisible", + "name": "getInputValue", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "string", + }, + }, + { + "inheritedFrom": { + "name": "BaseInputWrapper.isDisabled", + }, + "name": "isDisabled", "parameters": [], "returnType": { + "isNullable": false, "name": "boolean", - "type": "intrinsic", }, }, { @@ -40258,8 +41607,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -40277,8 +41645,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -40296,8 +41664,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -40315,24 +41683,44 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", + }, + }, + { + "description": "Sets the value of the component and calls the \`onChange\` handler. +The value needs to use the "YYYY/MM/DD" format, +but the subsequent \`onChange\` handler will contain the value in the "YYYY-MM-DD" format.", + "name": "setInputValue", + "parameters": [ + { + "description": "The value the input is set to, using the "YYYY/MM/DD" format.", + "flags": { + "isOptional": false, + }, + "name": "value", + "typeName": "string", + }, + ], + "returnType": { + "isNullable": false, + "name": "void", }, }, ], - "name": "PreferencesModalWrapper", + "name": "DateInputWrapper", }, { "methods": [ { "inheritedFrom": { - "name": "AbstractWrapper.blur", + "name": "BaseInputWrapper.blur", }, "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -40352,8 +41740,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -40371,8 +41759,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -40390,8 +41783,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -40409,8 +41807,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -40423,28 +41826,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -40460,12 +41863,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -40483,23 +41891,58 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], + }, + }, + { + "name": "findCalendar", + "parameters": [ + { + "defaultValue": "{ expandToViewport: false }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", + "flags": { + "isOptional": false, + }, + "name": "options", + "typeName": "{ expandToViewport: boolean; }", + }, + ], + "returnType": { + "isNullable": true, + "name": "CalendarWrapper", + }, + }, + { + "name": "findCalendarDropdown", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -40507,40 +41950,41 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "name": "findOptions", + "inheritedFrom": { + "name": "BaseInputWrapper.findNativeInput", + }, + "name": "findNativeInput", "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", "typeArguments": [ { - "name": "RadioButtonWrapper", - "type": "reference", + "name": "HTMLInputElement", }, ], }, }, { - "name": "findTitle", + "name": "findOpenCalendarButton", "parameters": [], "returnType": { - "name": "ElementWrapper", - "type": "reference", + "isNullable": false, + "name": "ButtonWrapper", }, }, { @@ -40558,19 +42002,19 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.focus", + "name": "BaseInputWrapper.focus", }, "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -40580,16 +42024,41 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { + "description": "Gets the value of the component. + +Returns the current value of the input.", "inheritedFrom": { - "name": "AbstractWrapper.keydown", + "name": "BaseInputWrapper.getInputValue", }, - "name": "keydown", - "parameters": [ + "name": "getInputValue", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "string", + }, + }, + { + "inheritedFrom": { + "name": "BaseInputWrapper.isDisabled", + }, + "name": "isDisabled", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "boolean", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ { "flags": { "isOptional": false, @@ -40599,8 +42068,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -40618,8 +42106,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -40637,8 +42125,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -40656,12 +42144,32 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", + }, + }, + { + "description": "Sets the value of the component and calls the \`onChange\` handler. +The value needs to use the "YYYY/MM/DD" format, +but the subsequent \`onChange\` handler will contain the value in the "YYYY-MM-DD" format.", + "name": "setInputValue", + "parameters": [ + { + "description": "The value the input is set to, using the "YYYY/MM/DD" format.", + "flags": { + "isOptional": false, + }, + "name": "value", + "typeName": "string", + }, + ], + "returnType": { + "isNullable": false, + "name": "void", }, }, ], - "name": "PageSizePreferenceWrapper", + "name": "DatePickerWrapper", }, { "methods": [ @@ -40672,8 +42180,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -40693,8 +42201,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -40712,8 +42220,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -40731,8 +42244,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -40750,8 +42268,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -40764,28 +42287,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -40801,12 +42324,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -40824,23 +42352,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -40848,42 +42380,63 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "name": "findDescription", - "parameters": [], + "name": "findDropdown", + "parameters": [ + { + "defaultValue": "{ expandToViewport: false }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", + "flags": { + "isOptional": false, + }, + "name": "options", + "typeName": "{ expandToViewport: boolean; }", + }, + ], "returnType": { - "name": "ElementWrapper", - "type": "reference", + "isNullable": true, + "name": "DrpDropdownWrapper", }, }, { - "name": "findRadioGroup", + "description": "Alias for \`findTrigger\`", + "name": "findLabel", "parameters": [], "returnType": { - "name": "RadioGroupWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "name": "findTitle", + "description": "Returns the trigger element that can be used to open the picker dropdown.", + "name": "findTrigger", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { @@ -40901,8 +42454,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -40912,8 +42465,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -40923,8 +42476,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -40942,8 +42495,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -40961,8 +42533,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -40980,8 +42552,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -40999,12 +42571,20 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", + }, + }, + { + "name": "openDropdown", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "void", }, }, ], - "name": "StickyColumnsPreferenceWrapper", + "name": "DateRangePickerWrapper", }, { "methods": [ @@ -41015,8 +42595,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -41036,8 +42616,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -41055,8 +42635,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -41074,8 +42659,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -41093,8 +42683,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -41107,28 +42702,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -41144,12 +42739,25 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], + }, + }, + { + "name": "findApplyButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ButtonWrapper", }, }, { @@ -41167,23 +42775,43 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], + }, + }, + { + "name": "findCancelButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ButtonWrapper", + }, + }, + { + "name": "findClearButton", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ButtonWrapper", }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -41191,83 +42819,253 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "name": "findOptions", + "description": "Returns the day container that corresponds to the current day.", + "name": "findCurrentDay", "parameters": [], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "CalendarDateWrapper", }, }, { - "name": "findOptionsGroups", + "description": "Returns the month container that corresponds to the current month.", + "name": "findCurrentMonth", "parameters": [], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", + "isNullable": false, + "name": "CalendarDateWrapper", + }, + }, + { + "name": "findCustomRelativeRangeDuration", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "InputWrapper", + }, + }, + { + "name": "findCustomRelativeRangeUnit", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "SelectWrapper", + }, + }, + { + "description": "Returns a day container on the calendar.", + "name": "findDateAt", + "parameters": [ + { + "description": "the calendar grid. If only one calendar grid is visible (on small screens), use \`'right'\`.", + "flags": { + "isOptional": false, }, - ], + "name": "grid", + "typeName": ""left" | "right"", + }, + { + "description": "1-based row index of the day.", + "flags": { + "isOptional": false, + }, + "name": "row", + "typeName": "2 | 1 | 3 | 4 | 5 | 6", + }, + { + "description": "1-based column index of the day.", + "flags": { + "isOptional": false, + }, + "name": "column", + "typeName": "2 | 1 | 3 | 4 | 5 | 6 | 7", + }, + ], + "returnType": { + "isNullable": false, + "name": "CalendarDateWrapper", }, }, { - "name": "findTitle", + "name": "findEndDateInput", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "InputWrapper", + }, + }, + { + "name": "findEndTimeInput", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "InputWrapper", + }, + }, + { + "name": "findHeader", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "description": "Returns a content selector toggle.", - "name": "findToggleByIndex", + "description": "Returns a month container on the calendar.", + "name": "findMonthAt", "parameters": [ { - "description": " -1-based index of the content group.", + "description": "the calendar grid. If only one calendar grid is visible (on small screens), use \`'right'\`.", "flags": { "isOptional": false, }, - "name": "groupIndex", - "typeName": "number", + "name": "grid", + "typeName": ""left" | "right"", }, { - "description": " -1-based index of the option to return within the group. -", + "description": "1-based row index of the month.", "flags": { "isOptional": false, }, - "name": "optionIndex", - "typeName": "number", + "name": "row", + "typeName": "2 | 1 | 3 | 4", + }, + { + "description": "1-based column index of the month.", + "flags": { + "isOptional": false, + }, + "name": "column", + "typeName": "2 | 1 | 3", }, ], "returnType": { - "name": "ToggleWrapper | null", - "type": "union", + "isNullable": false, + "name": "CalendarDateWrapper", + }, + }, + { + "name": "findNextButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ButtonWrapper", + }, + }, + { + "description": "Alias for findNextButton for compatibility with previous versions.", + "name": "findNextMonthButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ButtonWrapper", + }, + }, + { + "name": "findPreviousButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ButtonWrapper", + }, + }, + { + "description": "Alias for findPreviousButton for compatibility with previous versions.", + "name": "findPreviousMonthButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ButtonWrapper", + }, + }, + { + "name": "findRelativeRangeRadioGroup", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "RadioGroupWrapper", + }, + }, + { + "name": "findSelectedEndDate", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findSelectedStartDate", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findSelectionModeSwitch", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "SelectionModeSwitchWrapper", + }, + }, + { + "name": "findStartDateInput", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "InputWrapper", + }, + }, + { + "name": "findStartTimeInput", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "InputWrapper", + }, + }, + { + "name": "findValidationError", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLSpanElement", + }, + ], }, }, { @@ -41285,8 +43083,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -41296,8 +43094,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -41307,8 +43105,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -41326,8 +43124,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -41345,8 +43162,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -41364,8 +43181,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -41383,12 +43200,12 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "VisibleContentPreferenceWrapper", + "name": "DrpDropdownWrapper", }, { "methods": [ @@ -41399,8 +43216,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -41420,8 +43237,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -41439,8 +43256,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -41458,8 +43280,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -41477,10 +43304,15 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", - }, - }, + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], + }, + }, { "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. If no CSS selector is specified, returns all of the components that match the specified component type. @@ -41491,28 +43323,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -41528,12 +43360,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -41551,46 +43388,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns a column from the grid for a given index.", - "inheritedFrom": { - "name": "GridWrapper.findColumn", - }, - "name": "findColumn", - "parameters": [ - { - "description": " -1-based index of the column to return. -", - "flags": { - "isOptional": false, + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", }, - "name": "columnIndex", - "typeName": "number", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -41598,18 +43416,38 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", + }, + }, + { + "description": "Returns the mode selector as a SegmentedControl wrapper. + +The mode selector is only rendered as a SegmentedControl on wide viewports. On narrow viewports, use \`findModesAsSelect()\` instead.", + "name": "findModesAsSegments", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "SegmentedControlWrapper", + }, + }, + { + "description": "Returns the mode selector as a Select wrapper. +The mode selector is only rendered as a Select on narrow viewports. On wide viewports, use \`findModesAsSegments()\` instead.", + "name": "findModesAsSelect", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "SelectWrapper", }, }, { @@ -41627,8 +43465,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -41638,8 +43476,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -41649,8 +43487,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLDivElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -41668,8 +43506,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -41687,8 +43544,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -41706,8 +43563,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -41725,12 +43582,12 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "ColumnLayoutWrapper", + "name": "SelectionModeSwitchWrapper", }, { "methods": [ @@ -41741,8 +43598,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -41762,8 +43619,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -41781,8 +43638,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -41800,8 +43662,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -41819,8 +43686,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -41833,28 +43705,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -41870,12 +43742,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -41893,23 +43770,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -41917,50 +43798,56 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { "name": "findContent", "parameters": [], "returnType": { + "isNullable": true, "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findFooter", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { "name": "findHeader", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "name": "findMedia", + "name": "findHeaderActions", "parameters": [], "returnType": { + "isNullable": true, "name": "ElementWrapper", - "type": "reference", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { @@ -41978,8 +43865,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -41989,8 +43876,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -42000,8 +43887,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -42019,8 +43906,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -42038,8 +43944,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -42057,8 +43963,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -42076,12 +43982,12 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "ContainerWrapper", + "name": "DrawerWrapper", }, { "methods": [ @@ -42092,8 +43998,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -42113,8 +44019,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -42132,8 +44038,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -42151,8 +44062,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -42170,8 +44086,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -42184,28 +44105,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -42221,20 +44142,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findBreadcrumbs", - "parameters": [], - "returnType": { + "isNullable": true, "name": "ElementWrapper", - "type": "reference", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -42252,23 +44170,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -42276,50 +44198,108 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { "name": "findContent", "parameters": [], "returnType": { + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findExpandButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findExpandedContent", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findExpandIcon", + "parameters": [], + "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { "name": "findHeader", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "name": "findNotifications", + "name": "findHeaderDescription", "parameters": [], "returnType": { + "isNullable": true, "name": "ElementWrapper", - "type": "reference", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "name": "findSecondaryHeader", + "name": "findHeaderText", "parameters": [], "returnType": { + "isNullable": true, "name": "ElementWrapper", - "type": "reference", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { @@ -42337,8 +44317,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -42348,8 +44328,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -42359,8 +44339,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLDivElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -42378,8 +44358,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -42397,8 +44396,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -42416,8 +44415,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -42435,12 +44434,12 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "ContentLayoutWrapper", + "name": "ExpandableSectionWrapper", }, { "methods": [ @@ -42451,8 +44450,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -42472,8 +44471,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -42491,8 +44490,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -42510,8 +44514,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -42529,8 +44538,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -42543,28 +44557,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -42580,12 +44594,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -42603,23 +44622,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -42627,61 +44650,30 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "name": "findCopyButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", + "isNullable": true, + "name": "Wrapper", }, }, { - "description": "Used to get the text displayed next to the copy icon button when \`variant='inline'\`. -Returns either the \`textToCopy\` value or the \`textToDisplay\` value if it has been set.", - "name": "findDisplayedText", + "name": "findContent", "parameters": [], "returnType": { - "name": "null | ElementWrapper", - "type": "union", - }, - }, - { - "name": "findStatusText", - "parameters": [ - { - "defaultValue": "{ popoverRenderWithPortal: false }", - "flags": { - "isOptional": false, + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", }, - "name": "options", - }, - ], - "returnType": { - "name": "null | ElementWrapper", - "type": "union", - }, - }, - { - "description": "", - "name": "findTextToCopy", - "parameters": [], - "returnType": { - "name": "null | ElementWrapper", - "type": "union", + ], }, }, { @@ -42699,8 +44691,8 @@ Returns either the \`textToCopy\` value or the \`textToDisplay\` value if it has }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -42710,8 +44702,8 @@ Returns either the \`textToCopy\` value or the \`textToDisplay\` value if it has "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -42721,8 +44713,8 @@ Returns either the \`textToCopy\` value or the \`textToDisplay\` value if it has "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -42740,8 +44732,27 @@ Returns either the \`textToCopy\` value or the \`textToDisplay\` value if it has }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -42759,8 +44770,8 @@ Returns either the \`textToCopy\` value or the \`textToDisplay\` value if it has }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -42778,8 +44789,8 @@ Returns either the \`textToCopy\` value or the \`textToDisplay\` value if it has }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -42797,24 +44808,24 @@ Returns either the \`textToCopy\` value or the \`textToDisplay\` value if it has }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "CopyToClipboardWrapper", + "name": "FileDropzoneWrapper", }, { "methods": [ { "inheritedFrom": { - "name": "BaseInputWrapper.blur", + "name": "AbstractWrapper.blur", }, "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -42834,8 +44845,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -42853,8 +44864,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -42872,8 +44888,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -42891,8 +44912,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -42905,28 +44931,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -42942,12 +44968,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -42965,23 +44996,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -42989,37 +45024,40 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "inheritedFrom": { - "name": "BaseInputWrapper.findNativeInput", - }, "name": "findNativeInput", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", "typeArguments": [ { "name": "HTMLInputElement", - "type": "reference", }, ], }, }, + { + "name": "findTrigger", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ButtonWrapper", + }, + }, { "inheritedFrom": { "name": "AbstractWrapper.fireEvent", @@ -43035,19 +45073,19 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { "inheritedFrom": { - "name": "BaseInputWrapper.focus", + "name": "AbstractWrapper.focus", }, "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -43057,33 +45095,27 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", - }, - }, - { - "description": "Gets the value of the component. -Returns the current value of the input. -", - "inheritedFrom": { - "name": "BaseInputWrapper.getInputValue", - }, - "name": "getInputValue", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", + "isNullable": false, + "name": "ElementType", }, }, { "inheritedFrom": { - "name": "BaseInputWrapper.isDisabled", + "name": "AbstractWrapper.keydown", }, - "name": "isDisabled", - "parameters": [], + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyCode", + "typeName": "KeyCode", + }, + ], "returnType": { - "name": "boolean", - "type": "intrinsic", + "isNullable": false, + "name": "void", }, }, { @@ -43096,13 +45128,13 @@ Returns the current value of the input. "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -43120,8 +45152,8 @@ Returns the current value of the input. }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -43139,8 +45171,8 @@ Returns the current value of the input. }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -43158,46 +45190,24 @@ Returns the current value of the input. }, ], "returnType": { - "name": "this | null", - "type": "union", - }, - }, - { - "description": "Sets the value of the component and calls the \`onChange\` handler. -The value needs to use the "YYYY/MM/DD" format, -but the subsequent \`onChange\` handler will contain the value in the "YYYY-MM-DD" format.", - "name": "setInputValue", - "parameters": [ - { - "description": " -The value the input is set to, using the "YYYY/MM/DD" format. -", - "flags": { - "isOptional": false, - }, - "name": "value", - "typeName": "string", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": true, + "name": "this", }, }, ], - "name": "DateInputWrapper", + "name": "FileInputWrapper", }, { "methods": [ { "inheritedFrom": { - "name": "BaseInputWrapper.blur", + "name": "AbstractWrapper.blur", }, "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -43217,8 +45227,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -43236,8 +45246,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -43255,8 +45270,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -43274,8 +45294,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -43288,28 +45313,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -43325,12 +45350,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -43348,52 +45378,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "", - "name": "findCalendar", - "parameters": [ - { - "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", - "flags": { - "isOptional": false, + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", }, - "name": "options", - }, - ], - "returnType": { - "name": "CalendarWrapper | null", - "type": "union", - }, - }, - { - "name": "findCalendarDropdown", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -43401,45 +45406,49 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "inheritedFrom": { - "name": "BaseInputWrapper.findNativeInput", + "description": "Returns a file token from for a given index.", + "name": "findFileToken", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "fileTokenIndex", + "typeName": "number", + }, + ], + "returnType": { + "isNullable": true, + "name": "FileTokenWrapper", }, - "name": "findNativeInput", + }, + { + "name": "findFileTokens", "parameters": [], "returnType": { - "name": "ElementWrapper", - "type": "reference", + "isNullable": false, + "name": "Array", "typeArguments": [ { - "name": "HTMLInputElement", - "type": "reference", + "name": "FileTokenWrapper", }, ], }, }, - { - "name": "findOpenCalendarButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - }, - }, { "inheritedFrom": { "name": "AbstractWrapper.fireEvent", @@ -43455,19 +45464,19 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { "inheritedFrom": { - "name": "BaseInputWrapper.focus", + "name": "AbstractWrapper.focus", }, "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -43477,33 +45486,27 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", - }, - }, - { - "description": "Gets the value of the component. -Returns the current value of the input. -", - "inheritedFrom": { - "name": "BaseInputWrapper.getInputValue", - }, - "name": "getInputValue", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", + "isNullable": false, + "name": "ElementType", }, }, { "inheritedFrom": { - "name": "BaseInputWrapper.isDisabled", + "name": "AbstractWrapper.keydown", }, - "name": "isDisabled", - "parameters": [], + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyCode", + "typeName": "KeyCode", + }, + ], "returnType": { - "name": "boolean", - "type": "intrinsic", + "isNullable": false, + "name": "void", }, }, { @@ -43516,13 +45519,13 @@ Returns the current value of the input. "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -43540,8 +45543,8 @@ Returns the current value of the input. }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -43559,8 +45562,8 @@ Returns the current value of the input. }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -43578,34 +45581,12 @@ Returns the current value of the input. }, ], "returnType": { - "name": "this | null", - "type": "union", - }, - }, - { - "description": "Sets the value of the component and calls the \`onChange\` handler. -The value needs to use the "YYYY/MM/DD" format, -but the subsequent \`onChange\` handler will contain the value in the "YYYY-MM-DD" format.", - "name": "setInputValue", - "parameters": [ - { - "description": " -The value the input is set to, using the "YYYY/MM/DD" format. -", - "flags": { - "isOptional": false, - }, - "name": "value", - "typeName": "string", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": true, + "name": "this", }, }, ], - "name": "DatePickerWrapper", + "name": "FileTokenGroupWrapper", }, { "methods": [ @@ -43616,8 +45597,8 @@ The value the input is set to, using the "YYYY/MM/DD" format. "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -43637,8 +45618,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -43656,8 +45637,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -43675,8 +45661,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -43694,8 +45685,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -43708,28 +45704,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -43745,12 +45741,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -43768,23 +45769,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -43792,26 +45797,108 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "name": "findDisabledReason", + "name": "findFileError", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findFileLastModified", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findFileName", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findFileSize", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findFileThumbnail", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findFileWarning", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findRemoveButton", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { @@ -43829,8 +45916,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -43840,8 +45927,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -43851,8 +45938,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -43870,8 +45957,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -43889,8 +45995,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -43908,8 +46014,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -43927,12 +46033,12 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "CalendarDateWrapper", + "name": "FileTokenWrapper", }, { "methods": [ @@ -43943,8 +46049,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -43964,8 +46070,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -43983,8 +46089,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -44002,8 +46113,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -44021,8 +46137,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -44035,28 +46156,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -44072,12 +46193,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -44095,23 +46221,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -44119,98 +46249,162 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "description": "", - "name": "findDropdown", - "parameters": [ - { - "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", - "flags": { - "isOptional": false, - }, - "name": "options", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "DrpDropdownWrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "description": "Alias for \`findTrigger\`", - "name": "findLabel", + "name": "findConstraint", "parameters": [], "returnType": { + "isNullable": true, "name": "ElementWrapper", - "type": "reference", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "description": "Returns the trigger element that can be used to open the picker dropdown.", - "name": "findTrigger", + "name": "findError", "parameters": [], "returnType": { + "isNullable": true, "name": "ElementWrapper", - "type": "reference", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", + "description": "Returns a file token from for a given index.", + "name": "findFileToken", "parameters": [ { "flags": { "isOptional": false, }, - "name": "event", - "typeName": "Event", + "name": "fileTokenIndex", + "typeName": "number", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": true, + "name": "FileTokenWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", + "name": "findFileTokens", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "FileTokenWrapper", + }, + ], + }, + }, + { + "name": "findNativeInput", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLInputElement", + }, + ], + }, + }, + { + "description": "Returns the token toggle button.", + "name": "findTokenToggle", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findUploadButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ButtonWrapper", + }, + }, + { + "name": "findWarning", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.fireEvent", + }, + "name": "fireEvent", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "event", + "typeName": "Event", + }, + ], + "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.focus", + }, + "name": "focus", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { "name": "AbstractWrapper.getElement", }, "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -44228,8 +46422,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -44247,8 +46460,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -44266,8 +46479,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -44285,20 +46498,12 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", - }, - }, - { - "name": "openDropdown", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": true, + "name": "this", }, }, ], - "name": "DateRangePickerWrapper", + "name": "FileUploadWrapper", }, { "methods": [ @@ -44309,8 +46514,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -44330,8 +46535,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -44349,8 +46554,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -44368,8 +46578,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -44387,8 +46602,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -44401,28 +46621,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -44438,20 +46658,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findApplyButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -44469,39 +46686,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findCancelButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - }, - }, - { - "name": "findClearButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -44509,236 +46714,73 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the day container that corresponds to the current day.", - "name": "findCurrentDay", - "parameters": [], - "returnType": { - "name": "CalendarDateWrapper", - "type": "reference", - }, - }, - { - "description": "Returns the month container that corresponds to the current month.", - "name": "findCurrentMonth", - "parameters": [], - "returnType": { - "name": "CalendarDateWrapper", - "type": "reference", - }, - }, - { - "name": "findCustomRelativeRangeDuration", - "parameters": [], - "returnType": { - "name": "InputWrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "name": "findCustomRelativeRangeUnit", + "description": "Returns the individual flashes of this flashbar. + +If the items are stacked, only the item at the top of the stack is returned.", + "name": "findItems", "parameters": [], "returnType": { - "name": "SelectWrapper | null", - "type": "union", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "FlashWrapper", + }, + ], }, }, { - "description": "Returns a day container on the calendar.", - "name": "findDateAt", + "description": "Returns the individual flashes of this flashbar given the item type. + +If the items are stacked, only the item at the top of the stack is returned. + +If an item is loading its type is considered as "info".", + "name": "findItemsByType", "parameters": [ { - "description": " -the calendar grid. If only one calendar grid is visible (on small screens), use \`'right'\`.", - "flags": { - "isOptional": false, - }, - "name": "grid", - }, - { - "description": " -1-based row index of the day.", - "flags": { - "isOptional": false, - }, - "name": "row", - }, - { - "description": " -1-based column index of the day. -", "flags": { "isOptional": false, }, - "name": "column", + "name": "type", + "typeName": ""error" | "success" | "info" | "warning"", }, ], "returnType": { - "name": "CalendarDateWrapper", - "type": "reference", - }, - }, - { - "name": "findEndDateInput", - "parameters": [], - "returnType": { - "name": "InputWrapper | null", - "type": "union", - }, - }, - { - "name": "findEndTimeInput", - "parameters": [], - "returnType": { - "name": "InputWrapper | null", - "type": "union", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "FlashWrapper", + }, + ], }, }, { - "name": "findHeader", + "description": "Returns the toggle button that expands and collapses stacked notifications.", + "name": "findToggleButton", "parameters": [], "returnType": { + "isNullable": true, "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a month container on the calendar.", - "name": "findMonthAt", - "parameters": [ - { - "description": " -the calendar grid. If only one calendar grid is visible (on small screens), use \`'right'\`.", - "flags": { - "isOptional": false, - }, - "name": "grid", - }, - { - "description": " -1-based row index of the month.", - "flags": { - "isOptional": false, - }, - "name": "row", - }, - { - "description": " -1-based column index of the month. -", - "flags": { - "isOptional": false, + "typeArguments": [ + { + "name": "HTMLButtonElement", }, - "name": "column", - }, - ], - "returnType": { - "name": "CalendarDateWrapper", - "type": "reference", - }, - }, - { - "name": "findNextButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - }, - }, - { - "description": "Alias for findNextButton for compatibility with previous versions.", - "name": "findNextMonthButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - }, - }, - { - "name": "findPreviousButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - }, - }, - { - "description": "Alias for findPreviousButton for compatibility with previous versions.", - "name": "findPreviousMonthButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - }, - }, - { - "name": "findRelativeRangeRadioGroup", - "parameters": [], - "returnType": { - "name": "RadioGroupWrapper | null", - "type": "union", - }, - }, - { - "name": "findSelectedEndDate", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findSelectedStartDate", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findSelectionModeSwitch", - "parameters": [], - "returnType": { - "name": "SelectionModeSwitchWrapper", - "type": "reference", - }, - }, - { - "name": "findStartDateInput", - "parameters": [], - "returnType": { - "name": "InputWrapper | null", - "type": "union", - }, - }, - { - "name": "findStartTimeInput", - "parameters": [], - "returnType": { - "name": "InputWrapper | null", - "type": "union", - }, - }, - { - "name": "findValidationError", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + ], }, }, { @@ -44756,8 +46798,8 @@ the calendar grid. If only one calendar grid is visible (on small screens), use }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -44767,8 +46809,8 @@ the calendar grid. If only one calendar grid is visible (on small screens), use "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -44778,8 +46820,8 @@ the calendar grid. If only one calendar grid is visible (on small screens), use "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -44797,8 +46839,27 @@ the calendar grid. If only one calendar grid is visible (on small screens), use }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -44816,8 +46877,8 @@ the calendar grid. If only one calendar grid is visible (on small screens), use }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -44835,8 +46896,8 @@ the calendar grid. If only one calendar grid is visible (on small screens), use }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -44854,12 +46915,12 @@ the calendar grid. If only one calendar grid is visible (on small screens), use }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "DrpDropdownWrapper", + "name": "FlashbarWrapper", }, { "methods": [ @@ -44870,8 +46931,8 @@ the calendar grid. If only one calendar grid is visible (on small screens), use "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -44891,8 +46952,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -44910,8 +46971,26 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], + }, + }, + { + "name": "findActions", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { @@ -44929,8 +47008,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -44948,8 +47032,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -44962,28 +47051,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -44999,12 +47088,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -45022,23 +47116,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -45046,39 +47144,69 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "description": "Returns the mode selector as a SegmentedControl wrapper. -The mode selector is only rendered as a SegmentedControl on wide viewports. On narrow viewports, use \`findModesAsSelect()\` instead. -", - "name": "findModesAsSegments", + "name": "findContent", "parameters": [], "returnType": { - "name": "SegmentedControlWrapper", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "description": "Returns the mode selector as a Select wrapper. -The mode selector is only rendered as a Select on narrow viewports. On wide viewports, use \`findModesAsSegments()\` instead.", - "name": "findModesAsSelect", + "name": "findError", "parameters": [], "returnType": { - "name": "SelectWrapper", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findHeader", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findSecondaryActions", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { @@ -45096,8 +47224,8 @@ The mode selector is only rendered as a Select on narrow viewports. On wide view }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -45107,8 +47235,8 @@ The mode selector is only rendered as a Select on narrow viewports. On wide view "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -45118,8 +47246,8 @@ The mode selector is only rendered as a Select on narrow viewports. On wide view "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -45137,8 +47265,27 @@ The mode selector is only rendered as a Select on narrow viewports. On wide view }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -45156,8 +47303,8 @@ The mode selector is only rendered as a Select on narrow viewports. On wide view }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -45175,8 +47322,8 @@ The mode selector is only rendered as a Select on narrow viewports. On wide view }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -45194,12 +47341,12 @@ The mode selector is only rendered as a Select on narrow viewports. On wide view }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "SelectionModeSwitchWrapper", + "name": "FormWrapper", }, { "methods": [ @@ -45210,8 +47357,8 @@ The mode selector is only rendered as a Select on narrow viewports. On wide view "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -45231,8 +47378,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -45250,8 +47397,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -45269,8 +47421,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -45288,8 +47445,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -45302,28 +47464,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -45339,12 +47501,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -45362,23 +47529,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -45386,42 +47557,121 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "name": "findContent", + "name": "findConstraint", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "name": "findHeader", + "name": "findControl", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "name": "findHeaderActions", + "name": "findDescription", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findError", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findInfo", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findLabel", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findSecondaryControl", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findWarning", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { @@ -45439,8 +47689,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -45450,8 +47700,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -45461,8 +47711,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -45480,8 +47730,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -45499,8 +47768,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -45518,8 +47787,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -45537,12 +47806,12 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "DrawerWrapper", + "name": "FormFieldWrapper", }, { "methods": [ @@ -45553,8 +47822,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -45574,8 +47843,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -45593,8 +47862,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -45612,8 +47886,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -45631,8 +47910,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -45645,28 +47929,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -45682,12 +47966,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -45705,23 +47994,50 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], + }, + }, + { + "description": "Returns a column from the grid for a given index.", + "name": "findColumn", + "parameters": [ + { + "description": "1-based index of the column to return.", + "flags": { + "isOptional": false, + }, + "name": "columnIndex", + "typeName": "number", + }, + ], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLDivElement", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -45729,74 +48045,17 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "name": "findContent", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findExpandButton", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findExpandIcon", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findExpandedContent", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findHeader", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findHeaderDescription", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findHeaderText", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { @@ -45814,8 +48073,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -45825,8 +48084,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -45836,8 +48095,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -45855,8 +48114,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -45874,8 +48152,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -45893,8 +48171,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -45912,12 +48190,12 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "ExpandableSectionWrapper", + "name": "GridWrapper", }, { "methods": [ @@ -45928,8 +48206,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -45949,8 +48227,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -45968,8 +48246,26 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], + }, + }, + { + "name": "findActions", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { @@ -45987,8 +48283,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -46006,8 +48307,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -46020,28 +48326,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -46057,12 +48363,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -46080,23 +48391,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -46104,26 +48419,69 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "name": "findContent", + "name": "findCounter", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findDescription", "parameters": [], "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findHeadingText", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findInfo", + "parameters": [], + "returnType": { + "isNullable": true, "name": "ElementWrapper", - "type": "reference", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { @@ -46141,8 +48499,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -46152,8 +48510,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -46163,8 +48521,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -46182,8 +48540,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -46201,8 +48578,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -46220,8 +48597,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -46239,12 +48616,12 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "FileDropzoneWrapper", + "name": "HeaderWrapper", }, { "methods": [ @@ -46255,8 +48632,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -46276,8 +48653,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -46295,8 +48672,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -46314,8 +48696,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -46333,8 +48720,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -46347,28 +48739,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -46384,12 +48776,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -46407,23 +48804,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], + }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -46431,40 +48832,56 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "name": "findNativeInput", + "name": "findContent", "parameters": [], "returnType": { + "isNullable": true, "name": "ElementWrapper", - "type": "reference", "typeArguments": [ { - "name": "HTMLInputElement", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "name": "findTrigger", + "name": "findFooter", "parameters": [], "returnType": { - "name": "ButtonWrapper", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findHeader", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { @@ -46482,8 +48899,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -46493,8 +48910,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -46504,8 +48921,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -46523,8 +48940,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -46542,8 +48978,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -46561,8 +48997,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -46580,12 +49016,12 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "FileInputWrapper", + "name": "HelpPanelWrapper", }, { "methods": [ @@ -46596,8 +49032,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -46617,8 +49053,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -46636,8 +49072,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -46655,8 +49096,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -46674,8 +49120,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -46688,32 +49139,40 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, }, + { + "name": "findAnnotation", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "AnnotationWrapper", + }, + }, { "inheritedFrom": { "name": "AbstractWrapper.findAny", @@ -46725,12 +49184,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -46748,23 +49212,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -46772,47 +49240,28 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "description": "Returns a file token from for a given index.", - "name": "findFileToken", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "fileTokenIndex", - "typeName": "number", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "null | FileTokenWrapper", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "name": "findFileTokens", + "name": "findTrigger", "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", "typeArguments": [ { - "name": "FileTokenWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, @@ -46832,8 +49281,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -46843,8 +49292,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -46854,8 +49303,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -46873,8 +49322,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -46892,8 +49360,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -46911,8 +49379,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -46930,12 +49398,12 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "FileTokenGroupWrapper", + "name": "HotspotWrapper", }, { "methods": [ @@ -46946,8 +49414,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -46967,8 +49435,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -46986,8 +49454,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -47005,8 +49478,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -47024,8 +49502,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -47038,28 +49521,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -47075,12 +49558,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -47098,23 +49586,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -47122,74 +49614,17 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "name": "findFileError", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findFileLastModified", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findFileName", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findFileSize", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findFileThumbnail", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findFileWarning", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findRemoveButton", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", + "isNullable": true, + "name": "Wrapper", }, }, { @@ -47207,8 +49642,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -47218,8 +49653,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -47229,8 +49664,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -47248,8 +49683,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -47267,8 +49721,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -47286,8 +49740,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -47305,24 +49759,24 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "FileTokenWrapper", + "name": "IconWrapper", }, { "methods": [ { "inheritedFrom": { - "name": "AbstractWrapper.blur", + "name": "BaseInputWrapper.blur", }, "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -47342,8 +49796,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -47361,8 +49815,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -47380,8 +49839,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -47399,8 +49863,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -47413,28 +49882,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -47450,12 +49919,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -47473,23 +49947,40 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], + }, + }, + { + "name": "findClearButton", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -47497,145 +49988,118 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "name": "findConstraint", - "parameters": [], - "returnType": { - "name": "null | ElementWrapper", - "type": "union", + "inheritedFrom": { + "name": "BaseInputWrapper.findNativeInput", }, - }, - { - "name": "findError", + "name": "findNativeInput", "parameters": [], "returnType": { - "name": "null | ElementWrapper", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLInputElement", + }, + ], }, }, { - "description": "Returns a file token from for a given index.", - "name": "findFileToken", + "inheritedFrom": { + "name": "AbstractWrapper.fireEvent", + }, + "name": "fireEvent", "parameters": [ { "flags": { "isOptional": false, }, - "name": "fileTokenIndex", - "typeName": "number", + "name": "event", + "typeName": "Event", }, ], "returnType": { - "name": "null | FileTokenWrapper", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "name": "findFileTokens", - "parameters": [], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "FileTokenWrapper", - "type": "reference", - }, - ], + "inheritedFrom": { + "name": "BaseInputWrapper.focus", }, - }, - { - "name": "findNativeInput", + "name": "focus", "parameters": [], "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "HTMLInputElement", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the token toggle button.", - "name": "findTokenToggle", + "inheritedFrom": { + "name": "AbstractWrapper.getElement", + }, + "name": "getElement", "parameters": [], "returnType": { - "name": "null | ElementWrapper", - "type": "union", + "isNullable": false, + "name": "ElementType", }, }, { - "name": "findUploadButton", + "description": "Gets the value of the component. + +Returns the current value of the input.", + "inheritedFrom": { + "name": "BaseInputWrapper.getInputValue", + }, + "name": "getInputValue", "parameters": [], "returnType": { - "name": "ButtonWrapper", - "type": "reference", + "isNullable": false, + "name": "string", }, }, { - "name": "findWarning", + "inheritedFrom": { + "name": "BaseInputWrapper.isDisabled", + }, + "name": "isDisabled", "parameters": [], "returnType": { - "name": "null | ElementWrapper", - "type": "union", + "isNullable": false, + "name": "boolean", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", + "name": "AbstractWrapper.keydown", }, - "name": "fireEvent", + "name": "keydown", "parameters": [ { "flags": { "isOptional": false, }, - "name": "event", - "typeName": "Event", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "HTMLElement", - "type": "reference", }, }, { @@ -47648,13 +50112,13 @@ Component's wrapper class", "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -47672,8 +50136,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -47691,8 +50155,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -47710,12 +50174,33 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", + }, + }, + { + "description": "Sets the value of the component and calls the \`onChange\` handler", + "inheritedFrom": { + "name": "BaseInputWrapper.setInputValue", + }, + "name": "setInputValue", + "parameters": [ + { + "description": "The value the input is set to.", + "flags": { + "isOptional": false, + }, + "name": "value", + "typeName": "string", + }, + ], + "returnType": { + "isNullable": false, + "name": "void", }, }, ], - "name": "FileUploadWrapper", + "name": "InputWrapper", }, { "methods": [ @@ -47726,8 +50211,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -47747,8 +50232,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -47766,28 +50251,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the action slot.", - "name": "findAction", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the action button. -The action button is only rendered when the \`buttonText\` property is set. -", - "name": "findActionButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -47805,8 +50275,13 @@ The action button is only rendered when the \`buttonText\` property is set. }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -47824,8 +50299,13 @@ The action button is only rendered when the \`buttonText\` property is set. }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -47838,28 +50318,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -47875,12 +50355,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -47898,23 +50383,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -47922,45 +50411,30 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "name": "findContent", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the dismiss button. -The dismiss button is only rendered when the \`dismissible\` property is set to \`true\`. -", - "name": "findDismissButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "name": "findHeader", + "name": "findItems", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "KeyValuePairsItemWrapper", + }, + ], }, }, { @@ -47978,8 +50452,8 @@ The dismiss button is only rendered when the \`dismissible\` property is set to }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -47989,8 +50463,8 @@ The dismiss button is only rendered when the \`dismissible\` property is set to "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -48000,8 +50474,8 @@ The dismiss button is only rendered when the \`dismissible\` property is set to "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -48019,8 +50493,27 @@ The dismiss button is only rendered when the \`dismissible\` property is set to }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -48038,8 +50531,8 @@ The dismiss button is only rendered when the \`dismissible\` property is set to }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -48057,8 +50550,8 @@ The dismiss button is only rendered when the \`dismissible\` property is set to }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -48076,12 +50569,12 @@ The dismiss button is only rendered when the \`dismissible\` property is set to }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "FlashWrapper", + "name": "KeyValuePairsWrapper", }, { "methods": [ @@ -48092,8 +50585,8 @@ The dismiss button is only rendered when the \`dismissible\` property is set to "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -48113,8 +50606,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -48132,8 +50625,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -48151,8 +50649,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -48170,8 +50673,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -48184,28 +50692,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -48221,12 +50729,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -48244,23 +50757,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -48268,70 +50785,91 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "description": "Returns the individual flashes of this flashbar. -If the items are stacked, only the item at the top of the stack is returned. -", - "name": "findItems", + "name": "findGroupPairs", "parameters": [], "returnType": { + "isNullable": true, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "FlashWrapper", - "type": "reference", + "name": "KeyValuePairsPairWrapper", }, ], }, }, { - "description": "Returns the individual flashes of this flashbar given the item type. -If the items are stacked, only the item at the top of the stack is returned. - -If an item is loading its type is considered as "info". -", - "name": "findItemsByType", - "parameters": [ - { - "flags": { - "isOptional": false, + "name": "findGroupTitle", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", }, - "name": "type", - }, - ], + ], + }, + }, + { + "inheritedFrom": { + "name": "KeyValuePairsPairWrapper.findInfo", + }, + "name": "findInfo", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "FlashWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "description": "Returns the toggle button that expands and collapses stacked notifications.", - "name": "findToggleButton", + "inheritedFrom": { + "name": "KeyValuePairsPairWrapper.findLabel", + }, + "name": "findLabel", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "KeyValuePairsPairWrapper.findValue", + }, + "name": "findValue", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { @@ -48349,8 +50887,8 @@ If an item is loading its type is considered as "info". }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -48360,8 +50898,8 @@ If an item is loading its type is considered as "info". "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -48371,8 +50909,8 @@ If an item is loading its type is considered as "info". "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -48390,8 +50928,27 @@ If an item is loading its type is considered as "info". }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -48409,8 +50966,8 @@ If an item is loading its type is considered as "info". }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -48428,8 +50985,8 @@ If an item is loading its type is considered as "info". }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -48447,12 +51004,12 @@ If an item is loading its type is considered as "info". }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "FlashbarWrapper", + "name": "KeyValuePairsItemWrapper", }, { "methods": [ @@ -48463,8 +51020,8 @@ If an item is loading its type is considered as "info". "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -48484,8 +51041,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -48503,8 +51060,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -48522,8 +51084,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -48541,8 +51108,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -48555,28 +51127,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -48592,12 +51164,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -48615,23 +51192,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -48639,82 +51220,56 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "name": "findConstraint", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findControl", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findDescription", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findError", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { "name": "findInfo", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { "name": "findLabel", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findSecondaryControl", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "name": "findWarning", + "name": "findValue", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { @@ -48732,8 +51287,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -48743,8 +51298,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -48754,8 +51309,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -48773,8 +51328,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -48792,8 +51366,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -48811,8 +51385,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -48830,12 +51404,12 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "FormFieldWrapper", + "name": "KeyValuePairsPairWrapper", }, { "methods": [ @@ -48846,8 +51420,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -48867,8 +51441,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -48886,16 +51460,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findActions", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -48913,8 +51484,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -48932,8 +51508,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -48946,28 +51527,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -48983,12 +51564,34 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], + }, + }, + { + "description": "Returns a focusable element that controls keyboard interactions.", + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findApplication", + }, + "name": "findApplication", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { @@ -49006,23 +51609,43 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findChart", + }, + "name": "findChart", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -49030,60 +51653,189 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "name": "findContent", + "inheritedFrom": { + "name": "CommonChartWrapper.findDefaultFilter", + }, + "name": "findDefaultFilter", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ChartFilterWrapper", }, }, { - "name": "findError", + "inheritedFrom": { + "name": "CommonChartWrapper.findDetailPopover", + }, + "name": "findDetailPopover", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ChartPopoverWrapper", }, }, { - "name": "findHeader", + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findFilterContainer", + }, + "name": "findFilterContainer", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "name": "findSecondaryActions", + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findHighlightedSeries", + }, + "name": "findHighlightedSeries", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", + "name": "CommonChartWrapper.findLegend", }, - "name": "fireEvent", - "parameters": [ - { - "flags": { + "name": "findLegend", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ChartLegendWrapper", + }, + }, + { + "description": "Returns an array of chart series. Note that thresholds count as series as well.", + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findSeries", + }, + "name": "findSeries", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "CommonChartWrapper.findStatusContainer", + }, + "name": "findStatusContainer", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findXAxisTitle", + }, + "name": "findXAxisTitle", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findXTicks", + }, + "name": "findXTicks", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findYAxisTitle", + }, + "name": "findYAxisTitle", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findYTicks", + }, + "name": "findYTicks", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.fireEvent", + }, + "name": "fireEvent", + "parameters": [ + { + "flags": { "isOptional": false, }, "name": "event", @@ -49091,8 +51843,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -49102,8 +51854,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -49113,8 +51865,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -49132,8 +51884,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -49151,8 +51922,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -49170,8 +51941,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -49189,12 +51960,12 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "FormWrapper", + "name": "LineChartWrapper", }, { "methods": [ @@ -49205,8 +51976,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -49226,8 +51997,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -49245,8 +52016,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -49264,8 +52040,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -49283,8 +52064,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -49297,28 +52083,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -49334,12 +52120,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -49357,43 +52148,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns a column from the grid for a given index.", - "name": "findColumn", - "parameters": [ - { - "description": " -1-based index of the column to return. -", - "flags": { - "isOptional": false, + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", }, - "name": "columnIndex", - "typeName": "number", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -49401,18 +52176,17 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { @@ -49430,8 +52204,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -49441,8 +52215,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -49452,8 +52226,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLDivElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -49471,8 +52245,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -49490,8 +52283,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -49509,8 +52302,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -49528,12 +52321,12 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "GridWrapper", + "name": "LinkWrapper", }, { "methods": [ @@ -49544,8 +52337,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -49565,8 +52358,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -49584,16 +52377,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findActions", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -49611,8 +52401,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -49630,8 +52425,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -49644,28 +52444,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -49681,12 +52481,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -49704,23 +52509,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -49728,50 +52537,66 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "name": "findCounter", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "name": "findDescription", - "parameters": [], + "description": "Returns an item for a given id.", + "name": "findItemById", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "id", + "typeName": "string", + }, + ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ListItemWrapper", }, }, { - "name": "findHeadingText", - "parameters": [], + "description": "Returns an item for a given index.", + "name": "findItemByIndex", + "parameters": [ + { + "description": "1-based index of the item to return.", + "flags": { + "isOptional": false, + }, + "name": "index", + "typeName": "number", + }, + ], "returnType": { - "name": "ElementWrapper", - "type": "reference", + "isNullable": true, + "name": "ListItemWrapper", }, }, { - "name": "findInfo", + "description": "Returns all list items.", + "name": "findItems", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ListItemWrapper", + }, + ], }, }, { @@ -49789,8 +52614,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -49800,8 +52625,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -49811,8 +52636,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -49830,8 +52655,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -49849,8 +52693,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -49868,8 +52712,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -49887,12 +52731,12 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "HeaderWrapper", + "name": "ListWrapper", }, { "methods": [ @@ -49903,8 +52747,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -49924,8 +52768,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -49943,8 +52787,29 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "StructuredItemWrapper.findActions", + }, + "name": "findActions", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { @@ -49962,8 +52827,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -49981,8 +52851,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -49995,28 +52870,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -50032,12 +52907,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -50055,23 +52935,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -50079,42 +52963,78 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { + "inheritedFrom": { + "name": "StructuredItemWrapper.findContent", + }, "name": "findContent", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "name": "findFooter", + "name": "findDragHandle", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "name": "findHeader", + "inheritedFrom": { + "name": "StructuredItemWrapper.findIcon", + }, + "name": "findIcon", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "StructuredItemWrapper.findSecondaryContent", + }, + "name": "findSecondaryContent", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { @@ -50132,8 +53052,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -50143,8 +53063,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -50154,8 +53074,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -50173,8 +53093,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -50192,8 +53131,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -50211,8 +53150,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -50230,12 +53169,12 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "HelpPanelWrapper", + "name": "ListItemWrapper", }, { "methods": [ @@ -50246,8 +53185,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -50267,8 +53206,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -50286,8 +53225,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -50305,11 +53249,16 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", - }, - }, - { + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], + }, + }, + { "inheritedFrom": { "name": "AbstractWrapper.findAllByClassName", }, @@ -50324,8 +53273,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -50338,40 +53292,32 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, }, - { - "name": "findAnnotation", - "parameters": [], - "returnType": { - "name": "AnnotationWrapper | null", - "type": "union", - }, - }, { "inheritedFrom": { "name": "AbstractWrapper.findAny", @@ -50383,12 +53329,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -50406,23 +53357,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -50430,26 +53385,17 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "name": "findTrigger", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", + "isNullable": true, + "name": "Wrapper", }, }, { @@ -50467,8 +53413,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -50478,8 +53424,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -50489,8 +53435,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -50508,8 +53454,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -50527,8 +53492,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -50546,8 +53511,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -50565,12 +53530,12 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "HotspotWrapper", + "name": "LiveRegionWrapper", }, { "methods": [ @@ -50581,8 +53546,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -50602,8 +53567,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -50621,8 +53586,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -50640,8 +53610,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -50659,8 +53634,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -50673,28 +53653,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -50710,12 +53690,48 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], + }, + }, + { + "description": "Returns a focusable element that controls keyboard interactions.", + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findApplication", + }, + "name": "findApplication", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "description": "Returns an array of bar groups, which are used for mouse navigation if a chart contains bar series.", + "name": "findBarGroups", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -50733,23 +53749,43 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findChart", + }, + "name": "findChart", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -50757,18 +53793,179 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", + }, + }, + { + "inheritedFrom": { + "name": "CommonChartWrapper.findDefaultFilter", + }, + "name": "findDefaultFilter", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ChartFilterWrapper", + }, + }, + { + "inheritedFrom": { + "name": "CommonChartWrapper.findDetailPopover", + }, + "name": "findDetailPopover", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ChartPopoverWrapper", + }, + }, + { + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findFilterContainer", + }, + "name": "findFilterContainer", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findHighlightedSeries", + }, + "name": "findHighlightedSeries", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "CommonChartWrapper.findLegend", + }, + "name": "findLegend", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ChartLegendWrapper", + }, + }, + { + "description": "Returns an array of chart series. Note that thresholds count as series as well.", + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findSeries", + }, + "name": "findSeries", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "CommonChartWrapper.findStatusContainer", + }, + "name": "findStatusContainer", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findXAxisTitle", + }, + "name": "findXAxisTitle", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findXTicks", + }, + "name": "findXTicks", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findYAxisTitle", + }, + "name": "findYAxisTitle", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findYTicks", + }, + "name": "findYTicks", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -50786,8 +53983,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -50797,8 +53994,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -50808,8 +54005,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLButtonElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -50827,8 +54024,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -50846,8 +54062,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -50865,8 +54081,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -50884,21 +54100,24 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "IconWrapper", + "name": "MixedLineBarChartWrapper", }, { "methods": [ { + "inheritedFrom": { + "name": "AbstractWrapper.blur", + }, "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -50918,8 +54137,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -50937,8 +54156,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -50956,8 +54180,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -50975,8 +54204,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -50989,28 +54223,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -51026,12 +54260,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -51049,23 +54288,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -51073,30 +54316,67 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "name": "findNativeInput", + "name": "findContent", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", "typeArguments": [ { - "name": "HTMLInputElement", - "type": "reference", + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findDismissButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findFooter", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findHeader", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", }, ], }, @@ -51116,16 +54396,19 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { + "inheritedFrom": { + "name": "AbstractWrapper.focus", + }, "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -51135,27 +54418,16 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", - }, - }, - { - "description": "Gets the value of the component. -Returns the current value of the input. -", - "name": "getInputValue", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", + "isNullable": false, + "name": "ElementType", }, }, { - "name": "isDisabled", + "name": "isVisible", "parameters": [], "returnType": { + "isNullable": false, "name": "boolean", - "type": "intrinsic", }, }, { @@ -51173,34 +54445,34 @@ Returns the current value of the input. }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keypress", + "name": "AbstractWrapper.keydown", }, - "name": "keypress", + "name": "keydown", "parameters": [ { "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keyup", + "name": "AbstractWrapper.keypress", }, - "name": "keyup", + "name": "keypress", "parameters": [ { "flags": { @@ -51211,63 +54483,62 @@ Returns the current value of the input. }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.matches", + "name": "AbstractWrapper.keyup", }, - "name": "matches", + "name": "keyup", "parameters": [ { "flags": { "isOptional": false, }, - "name": "selector", - "typeName": "string", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Sets the value of the component and calls the \`onChange\` handler", - "name": "setInputValue", + "inheritedFrom": { + "name": "AbstractWrapper.matches", + }, + "name": "matches", "parameters": [ { - "description": " -The value the input is set to. -", "flags": { "isOptional": false, }, - "name": "value", + "name": "selector", "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": true, + "name": "this", }, }, ], - "name": "BaseInputWrapper", + "name": "ModalWrapper", }, { "methods": [ { "inheritedFrom": { - "name": "BaseInputWrapper.blur", + "name": "AbstractWrapper.blur", }, "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -51287,8 +54558,59 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "description": "Selects all options by triggering corresponding events on the element that selects or deselects all options in Multiselect when using the \`enableSelectAll\` flag. + +This utility does not open the dropdown of the given select. You will need to call \`openDropdown\` first in your test. + +Example: +\`\`\` +wrapper.openDropdown(); +wrapper.clickSelectAll(); +\`\`\`", + "inheritedFrom": { + "name": "DropdownHostComponentWrapper.clickSelectAll", + }, + "name": "clickSelectAll", + "parameters": [ + { + "defaultValue": "{ expandToViewport: false }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", + "flags": { + "isOptional": false, + }, + "name": "options", + "typeName": "{ expandToViewport: boolean; }", + }, + ], + "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "DropdownHostComponentWrapper.closeDropdown", + }, + "name": "closeDropdown", + "parameters": [ + { + "defaultValue": "{ expandToViewport: false }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", + "flags": { + "isOptional": false, + }, + "name": "options", + "typeName": "{ expandToViewport: boolean; }", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -51306,8 +54628,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -51325,8 +54652,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -51344,8 +54676,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -51358,28 +54695,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -51395,12 +54732,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -51418,31 +54760,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findClearButton", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -51450,33 +54788,185 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { "inheritedFrom": { - "name": "BaseInputWrapper.findNativeInput", + "name": "DropdownHostComponentWrapper.findDropdown", }, - "name": "findNativeInput", + "name": "findDropdown", + "parameters": [ + { + "defaultValue": "{ expandToViewport: false }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", + "flags": { + "isOptional": false, + }, + "name": "options", + "typeName": "{ expandToViewport: boolean; }", + }, + ], + "returnType": { + "isNullable": false, + "name": "DropdownContentWrapper", + }, + }, + { + "name": "findErrorRecoveryButton", + "parameters": [ + { + "defaultValue": "{ expandToViewport: false }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", + "flags": { + "isOptional": false, + }, + "name": "options", + "typeName": "{ expandToViewport: boolean; }", + }, + ], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "description": "Returns the input that is used for filtering.", + "name": "findFilteringInput", + "parameters": [ + { + "defaultValue": "{ expandToViewport: false }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", + "flags": { + "isOptional": false, + }, + "name": "options", + "typeName": "{ expandToViewport: boolean; }", + }, + ], + "returnType": { + "isNullable": true, + "name": "InputWrapper", + }, + }, + { + "name": "findInlineLabel", "parameters": [], "returnType": { + "isNullable": true, "name": "ElementWrapper", - "type": "reference", "typeArguments": [ { - "name": "HTMLInputElement", - "type": "reference", + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findPlaceholder", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findStatusIndicator", + "parameters": [ + { + "defaultValue": "{ expandToViewport: false }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", + "flags": { + "isOptional": false, + }, + "name": "options", + "typeName": "{ expandToViewport: boolean; }", + }, + ], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "description": "Returns a token.", + "name": "findToken", + "parameters": [ + { + "description": "1-based index of the token to return", + "flags": { + "isOptional": false, + }, + "name": "tokenIndex", + "typeName": "number", + }, + ], + "returnType": { + "isNullable": true, + "name": "TokenWrapper", + }, + }, + { + "name": "findTokens", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "TokenWrapper", + }, + ], + }, + }, + { + "description": "Returns a token toggle button.", + "name": "findTokenToggle", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findTrigger", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", }, ], }, @@ -51496,19 +54986,19 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { "inheritedFrom": { - "name": "BaseInputWrapper.focus", + "name": "AbstractWrapper.focus", }, "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -51518,33 +55008,35 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { - "description": "Gets the value of the component. -Returns the current value of the input. -", - "inheritedFrom": { - "name": "BaseInputWrapper.getInputValue", - }, - "name": "getInputValue", + "name": "isDisabled", "parameters": [], "returnType": { - "name": "string", - "type": "intrinsic", + "isNullable": false, + "name": "boolean", }, }, { "inheritedFrom": { - "name": "BaseInputWrapper.isDisabled", + "name": "AbstractWrapper.keydown", }, - "name": "isDisabled", - "parameters": [], + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyCode", + "typeName": "KeyCode", + }, + ], "returnType": { - "name": "boolean", - "type": "intrinsic", + "isNullable": false, + "name": "void", }, }, { @@ -51557,13 +55049,13 @@ Returns the current value of the input. "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -51581,8 +55073,8 @@ Returns the current value of the input. }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -51600,8 +55092,8 @@ Returns the current value of the input. }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -51619,35 +55111,101 @@ Returns the current value of the input. }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, { - "description": "Sets the value of the component and calls the \`onChange\` handler", "inheritedFrom": { - "name": "BaseInputWrapper.setInputValue", + "name": "DropdownHostComponentWrapper.openDropdown", }, - "name": "setInputValue", + "name": "openDropdown", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "description": "Selects an option for the given index by triggering corresponding events. + +This utility does not open the dropdown of the given select. You will need to call \`openDropdown\` first in your test. +On selection the dropdown will close automatically. + +Example: +\`\`\` +wrapper.openDropdown(); +wrapper.selectOption(1); +\`\`\`", + "inheritedFrom": { + "name": "DropdownHostComponentWrapper.selectOption", + }, + "name": "selectOption", + "parameters": [ + { + "description": "1-based index of the option to select", + "flags": { + "isOptional": false, + }, + "name": "index", + "typeName": "number", + }, + { + "defaultValue": "{ expandToViewport: false }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", + "flags": { + "isOptional": false, + }, + "name": "options", + "typeName": "{ expandToViewport: boolean; }", + }, + ], + "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "description": "Selects an option for the given value by triggering corresponding events. + +This utility does not open the dropdown of the given select. You will need to call \`openDropdown\` first in your test. +On selection the dropdown will close automatically. + +Example: +\`\`\` +wrapper.openDropdown(); +wrapper.selectOptionByValue('option_1'); +\`\`\`", + "inheritedFrom": { + "name": "DropdownHostComponentWrapper.selectOptionByValue", + }, + "name": "selectOptionByValue", "parameters": [ { - "description": " -The value the input is set to. -", + "description": "value of the option", "flags": { "isOptional": false, }, "name": "value", "typeName": "string", }, + { + "defaultValue": "{ expandToViewport: false }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", + "flags": { + "isOptional": false, + }, + "name": "options", + "typeName": "{ expandToViewport: boolean; }", + }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, ], - "name": "InputWrapper", + "name": "MultiselectWrapper", }, { "methods": [ @@ -51658,8 +55216,8 @@ The value the input is set to. "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -51679,8 +55237,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -51698,8 +55256,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -51717,8 +55280,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -51736,8 +55304,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -51750,28 +55323,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -51787,12 +55360,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -51810,23 +55388,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -51834,108 +55416,321 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "name": "findDescription", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "name": "findLabel", + "name": "findDisabledOptions", "parameters": [], "returnType": { - "name": "ElementWrapper", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "OptionWrapper", + }, + ], }, }, { - "name": "findNativeInput", + "name": "findFooterRegion", "parameters": [], "returnType": { + "isNullable": true, "name": "ElementWrapper", - "type": "reference", "typeArguments": [ { - "name": "HTMLInputElement", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", + "description": "Returns an option group from the dropdown.", + "name": "findGroup", "parameters": [ { + "description": "1-based index of the group to select.", "flags": { "isOptional": false, }, - "name": "event", - "typeName": "Event", + "name": "index", + "typeName": "number", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.focus", + "description": "Returns all option groups in the dropdown.", + "name": "findGroups", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, - "name": "focus", + }, + { + "name": "findHighlightedAriaLiveRegion", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", + "description": "Returns highlighted text fragments from all of the options. +Options get highlighted when they match the value of the input field.", + "name": "findHighlightedMatches", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, - "name": "getElement", + }, + { + "name": "findHighlightedOption", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": true, + "name": "OptionWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", + "name": "findOpenDropdown", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, - "name": "keydown", + }, + { + "description": "Returns an option from the dropdown.", + "name": "findOption", "parameters": [ { + "description": "1-based index of the option to select.", "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "optionIndex", + "typeName": "number", + }, + ], + "returnType": { + "isNullable": true, + "name": "OptionWrapper", + }, + }, + { + "name": "findOptionByValue", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "value", + "typeName": "string", + }, + ], + "returnType": { + "isNullable": true, + "name": "OptionWrapper", + }, + }, + { + "description": "Returns an option from the dropdown.", + "name": "findOptionInGroup", + "parameters": [ + { + "description": "1-based index of the group to select an option in.", + "flags": { + "isOptional": false, + }, + "name": "groupIndex", + "typeName": "number", + }, + { + "description": "1-based index of the option to select.", + "flags": { + "isOptional": false, + }, + "name": "optionIndex", + "typeName": "number", + }, + ], + "returnType": { + "isNullable": true, + "name": "OptionWrapper", + }, + }, + { + "name": "findOptions", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "OptionWrapper", + }, + ], + }, + }, + { + "description": "Use this element to scroll through the list of options", + "name": "findOptionsContainer", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findSelectAll", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findSelectedOptions", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "OptionWrapper", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.fireEvent", + }, + "name": "fireEvent", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "event", + "typeName": "Event", + }, + ], + "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.focus", + }, + "name": "focus", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.getElement", + }, + "name": "getElement", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementType", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyCode", + "typeName": "KeyCode", + }, + ], + "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -51953,8 +55748,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -51972,8 +55767,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -51991,12 +55786,12 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "AbstractSwitchWrapper", + "name": "DropdownContentWrapper", }, { "methods": [ @@ -52007,8 +55802,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -52028,8 +55823,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -52047,8 +55842,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -52066,8 +55866,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -52085,8 +55890,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -52099,28 +55909,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -52136,12 +55946,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -52159,23 +55974,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -52183,34 +56002,92 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "name": "findDropdown", + "name": "findCurrentPage", "parameters": [], "returnType": { - "name": "DropdownWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "name": "findInput", + "name": "findNextPageButton", "parameters": [], "returnType": { - "name": "InputWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "description": "Returns a page number for a given index.", + "name": "findPageNumberByIndex", + "parameters": [ + { + "description": "1-based index of the page number to return.", + "flags": { + "isOptional": false, + }, + "name": "index", + "typeName": "number", + }, + ], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findPageNumbers", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], + }, + }, + { + "name": "findPreviousPageButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { @@ -52228,8 +56105,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -52239,8 +56116,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -52250,8 +56127,16 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", + }, + }, + { + "name": "isDisabled", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "boolean", }, }, { @@ -52269,8 +56154,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -52288,8 +56192,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -52307,8 +56211,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -52326,12 +56230,12 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "AutosuggestInputWrapper", + "name": "PaginationWrapper", }, { "methods": [ @@ -52342,8 +56246,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -52363,64 +56267,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Selects all options by triggering corresponding events on the element that selects or deselects all options in Multiselect when using the \`enableSelectAll\` flag. -This utility does not open the dropdown of the given select. You will need to call \`openDropdown\` first in your test. - -Example: -\`\`\` -wrapper.openDropdown(); -wrapper.clickSelectAll(); -\`\`\` -", - "inheritedFrom": { - "name": "DropdownHostComponentWrapper.clickSelectAll", - }, - "name": "clickSelectAll", - "parameters": [ - { - "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "", - "inheritedFrom": { - "name": "DropdownHostComponentWrapper.closeDropdown", - }, - "name": "closeDropdown", - "parameters": [ - { - "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", }, }, { @@ -52438,8 +56286,13 @@ wrapper.clickSelectAll(); }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -52457,8 +56310,13 @@ wrapper.clickSelectAll(); }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -52476,8 +56334,13 @@ wrapper.clickSelectAll(); }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -52490,28 +56353,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -52527,12 +56390,31 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], + }, + }, + { + "description": "Returns a focusable element that controls keyboard interactions.", + "name": "findApplication", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { @@ -52550,23 +56432,40 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], + }, + }, + { + "name": "findChart", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -52574,125 +56473,192 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "description": "", "inheritedFrom": { - "name": "DropdownHostComponentWrapper.findDropdown", + "name": "CommonChartWrapper.findDefaultFilter", }, - "name": "findDropdown", - "parameters": [ - { - "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], + "name": "findDefaultFilter", + "parameters": [], "returnType": { - "name": "DropdownContentWrapper", - "type": "reference", + "isNullable": true, + "name": "ChartFilterWrapper", }, }, { - "name": "findPlaceholder", + "inheritedFrom": { + "name": "CommonChartWrapper.findDetailPopover", + }, + "name": "findDetailPopover", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ChartPopoverWrapper", }, }, { - "name": "findTrigger", + "name": "findFilterContainer", "parameters": [], "returnType": { + "isNullable": true, "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, + "typeArguments": [ + { + "name": "HTMLElement", }, - "name": "event", - "typeName": "Event", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", + ], }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", + "name": "findHighlightedSegment", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", + "name": "findHighlightedSegmentLabel", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findInnerContent", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keydown", + "name": "CommonChartWrapper.findLegend", }, - "name": "keydown", + "name": "findLegend", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ChartLegendWrapper", + }, + }, + { + "name": "findSegmentLabels", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], + }, + }, + { + "name": "findSegments", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "CommonChartWrapper.findStatusContainer", + }, + "name": "findStatusContainer", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.fireEvent", + }, + "name": "fireEvent", "parameters": [ { "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "event", + "typeName": "Event", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keypress", + "name": "AbstractWrapper.focus", }, - "name": "keypress", + "name": "focus", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.getElement", + }, + "name": "getElement", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementType", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", "parameters": [ { "flags": { @@ -52703,145 +56669,88 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keyup", + "name": "AbstractWrapper.keydown", }, - "name": "keyup", + "name": "keydown", "parameters": [ { "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.matches", + "name": "AbstractWrapper.keypress", }, - "name": "matches", + "name": "keypress", "parameters": [ { "flags": { "isOptional": false, }, - "name": "selector", - "typeName": "string", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "this | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "DropdownHostComponentWrapper.openDropdown", - }, - "name": "openDropdown", - "parameters": [], - "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { - "description": "Selects an option for the given index by triggering corresponding events. -This utility does not open the dropdown of the given select. You will need to call \`openDropdown\` first in your test. -On selection the dropdown will close automatically. - -Example: -\`\`\` -wrapper.openDropdown(); -wrapper.selectOption(1); -\`\`\` -", "inheritedFrom": { - "name": "DropdownHostComponentWrapper.selectOption", + "name": "AbstractWrapper.keyup", }, - "name": "selectOption", + "name": "keyup", "parameters": [ { - "description": " -1-based index of the option to select", - "flags": { - "isOptional": false, - }, - "name": "index", - "typeName": "number", - }, - { - "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", "flags": { "isOptional": false, }, - "name": "options", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { - "description": "Selects an option for the given value by triggering corresponding events. -This utility does not open the dropdown of the given select. You will need to call \`openDropdown\` first in your test. -On selection the dropdown will close automatically. - -Example: -\`\`\` -wrapper.openDropdown(); -wrapper.selectOptionByValue('option_1'); -\`\`\` -", "inheritedFrom": { - "name": "DropdownHostComponentWrapper.selectOptionByValue", + "name": "AbstractWrapper.matches", }, - "name": "selectOptionByValue", + "name": "matches", "parameters": [ { - "description": " -value of the option", "flags": { "isOptional": false, }, - "name": "value", + "name": "selector", "typeName": "string", }, - { - "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": true, + "name": "this", }, }, ], - "name": "ChartFilterWrapper", + "name": "PieChartWrapper", }, { "methods": [ @@ -52852,8 +56761,8 @@ value of the option", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -52873,8 +56782,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -52892,8 +56801,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -52911,8 +56825,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -52930,8 +56849,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -52944,28 +56868,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -52981,12 +56905,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -53004,23 +56933,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -53028,56 +56961,94 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "name": "findHighlightedItem", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "name": "findItems", - "parameters": [], + "name": "findContent", + "parameters": [ + { + "defaultValue": "{ renderWithPortal: false }", + "description": "* renderWithPortal (boolean) - Flag to find the content when the popover is rendered with a portal", + "flags": { + "isOptional": false, + }, + "name": "options", + "typeName": "{ renderWithPortal: boolean; }", + }, + ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "ElementWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "name": "findNativeList", - "parameters": [], + "name": "findDismissButton", + "parameters": [ + { + "defaultValue": "{ renderWithPortal: false }", + "description": "* renderWithPortal (boolean) - Flag to find the dismiss button when the popover is rendered with a portal", + "flags": { + "isOptional": false, + }, + "name": "options", + "typeName": "{ renderWithPortal: boolean; }", + }, + ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ButtonWrapper", }, }, { - "name": "findTitle", + "name": "findHeader", + "parameters": [ + { + "defaultValue": "{ renderWithPortal: false }", + "description": "* renderWithPortal (boolean) - Flag to find the header when the popover is rendered with a portal", + "flags": { + "isOptional": false, + }, + "name": "options", + "typeName": "{ renderWithPortal: boolean; }", + }, + ], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findTrigger", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { @@ -53095,8 +57066,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -53106,8 +57077,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -53117,8 +57088,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -53136,8 +57107,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -53155,8 +57145,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -53174,8 +57164,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -53193,12 +57183,12 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "ChartLegendWrapper", + "name": "PopoverWrapper", }, { "methods": [ @@ -53209,8 +57199,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -53230,8 +57220,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -53249,8 +57239,26 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], + }, + }, + { + "name": "findAdditionalInfo", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { @@ -53268,8 +57276,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -53287,8 +57300,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -53301,28 +57319,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -53338,12 +57356,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -53361,23 +57384,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -53385,34 +57412,62 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "name": "findKey", + "name": "findPercentageText", "parameters": [], "returnType": { + "isNullable": true, "name": "ElementWrapper", - "type": "reference", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "name": "findValue", + "name": "findResultButton", "parameters": [], "returnType": { + "isNullable": true, + "name": "ButtonWrapper", + }, + }, + { + "description": "Returns the result text.", + "name": "findResultText", + "parameters": [ + { + "description": "[optional] Status of the result text. It can be aither "error" or "succes". +If not specified, the method returns the result text that is currently displayed, independently of the result status.", + "flags": { + "isOptional": true, + }, + "name": "status", + "typeName": "string", + }, + ], + "returnType": { + "isNullable": true, "name": "ElementWrapper", - "type": "reference", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { @@ -53430,8 +57485,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -53441,8 +57496,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -53452,8 +57507,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -53471,8 +57526,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -53490,8 +57564,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -53509,8 +57583,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -53528,12 +57602,12 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "ChartPopoverSeriesItemWrapper", + "name": "ProgressBarWrapper", }, { "methods": [ @@ -53544,8 +57618,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -53565,8 +57639,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -53584,8 +57658,27 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], + }, + }, + { + "description": "Finds the action button. Note that, despite its typings, this may return null.", + "name": "findActionButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLButtonElement", + }, + ], }, }, { @@ -53603,8 +57696,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -53622,8 +57720,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -53636,28 +57739,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -53673,12 +57776,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -53696,23 +57804,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -53720,54 +57832,70 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "inheritedFrom": { - "name": "ChartPopoverSeriesItemWrapper.findKey", - }, - "name": "findKey", + "name": "findCustomPrimaryAction", "parameters": [], "returnType": { + "isNullable": true, "name": "ElementWrapper", - "type": "reference", + "typeArguments": [ + { + "name": "HTMLDivElement", + }, + ], }, }, { - "name": "findSubItems", + "name": "findNativeTextarea", "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", "typeArguments": [ { - "name": "ChartPopoverSeriesItemWrapper", - "type": "reference", + "name": "HTMLTextAreaElement", }, ], }, }, { - "inheritedFrom": { - "name": "ChartPopoverSeriesItemWrapper.findValue", + "description": "Finds the secondary actions slot. Note that, despite its typings, this may return null.", + "name": "findSecondaryActions", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLDivElement", + }, + ], }, - "name": "findValue", + }, + { + "name": "findSecondaryContent", "parameters": [], "returnType": { + "isNullable": true, "name": "ElementWrapper", - "type": "reference", + "typeArguments": [ + { + "name": "HTMLDivElement", + }, + ], }, }, { @@ -53785,8 +57913,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -53796,8 +57924,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -53807,8 +57935,19 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", + }, + }, + { + "description": "Gets the value of the component. + +Returns the current value of the textarea.", + "name": "getTextareaValue", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "string", }, }, { @@ -53826,8 +57965,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -53845,8 +58003,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -53864,8 +58022,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -53883,24 +58041,42 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", + }, + }, + { + "description": "Sets the value of the component and calls the onChange handler.", + "name": "setTextareaValue", + "parameters": [ + { + "description": "value to set the textarea to.", + "flags": { + "isOptional": false, + }, + "name": "value", + "typeName": "string", + }, + ], + "returnType": { + "isNullable": false, + "name": "void", }, }, ], - "name": "ChartPopoverSeriesWrapper", + "name": "PromptInputWrapper", }, { "methods": [ { "inheritedFrom": { - "name": "AbstractWrapper.blur", + "name": "BaseInputWrapper.blur", }, "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -53920,8 +58096,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -53939,8 +58115,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -53958,8 +58139,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -53977,8 +58163,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -53991,28 +58182,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -54028,12 +58219,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -54051,23 +58247,43 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "InputWrapper.findClearButton", + }, + "name": "findClearButton", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -54075,442 +58291,351 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "name": "findContent", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findDismissButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper | null", - "type": "union", - }, - }, - { - "name": "findHeader", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "name": "findSeries", + "description": "Returns the element containing the \`filteringConstraintText\` slot.", + "name": "findConstraint", "parameters": [], "returnType": { - "name": " | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", }, - "name": "event", - "typeName": "Event", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", + ], }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", + "description": "Returns the element containing the \`customControl\` slot.", + "name": "findCustomControl", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", + "description": "Returns the element containing the \`customFilterActions\` slot.", + "name": "findCustomFilterActions", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", + ], }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keypress", + "name": "AutosuggestWrapper.findDropdown", }, - "name": "keypress", + "name": "findDropdown", "parameters": [ { + "defaultValue": "{ expandToViewport: false }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "options", + "typeName": "{ expandToViewport: boolean; }", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "AutosuggestDropdownWrapper", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keyup", + "name": "AutosuggestWrapper.findEnteredTextOption", }, - "name": "keyup", + "name": "findEnteredTextOption", "parameters": [ { + "defaultValue": "{ expandToViewport: false }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "options", + "typeName": "{ expandToViewport: boolean; }", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { "inheritedFrom": { - "name": "AbstractWrapper.matches", + "name": "AutosuggestWrapper.findErrorRecoveryButton", }, - "name": "matches", + "name": "findErrorRecoveryButton", "parameters": [ { + "defaultValue": "{ expandToViewport: false }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", "flags": { "isOptional": false, }, - "name": "selector", - "typeName": "string", + "name": "options", + "typeName": "{ expandToViewport: boolean; }", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, - ], - "name": "ChartPopoverWrapper", - }, - { - "methods": [ { "inheritedFrom": { - "name": "AbstractWrapper.blur", + "name": "BaseInputWrapper.findNativeInput", }, - "name": "blur", + "name": "findNativeInput", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLInputElement", + }, + ], }, }, { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", + "description": "Returns custom property form cancel button.", + "name": "findPropertyCancelButton", "parameters": [ { + "defaultValue": "{ expandToViewport: false }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "params", - "typeName": "MouseEventInit", + "name": "options", + "typeName": "{ expandToViewport: boolean; }", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": true, + "name": "ButtonWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", + "description": "Returns custom property form submit button.", + "name": "findPropertySubmitButton", "parameters": [ { + "defaultValue": "{ expandToViewport: false }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", "flags": { "isOptional": false, }, - "name": "selector", - "typeName": "string", + "name": "options", + "typeName": "{ expandToViewport: boolean; }", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ButtonWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], + "description": "Returns the button that removes all current tokens.", + "name": "findRemoveAllButton", + "parameters": [], "returnType": { - "name": "array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], + "name": "findResultsCount", + "parameters": [], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", + "name": "AutosuggestWrapper.findStatusIndicator", }, - "name": "findAllComponents", + "name": "findStatusIndicator", "parameters": [ { - "description": " -Component's wrapper class", + "defaultValue": "{ expandToViewport: false }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", "flags": { "isOptional": false, }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", + "name": "options", + "typeName": "{ expandToViewport: boolean; }", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "Wrapper", - "type": "typeParameter", + "name": "HTMLElement", }, ], }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], + "name": "findTokens", + "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "FilteringTokenWrapper", + }, + ], }, }, { - "name": "findBody", + "description": "Returns the button that toggles if the tokens above \`tokenLimit\` are visible.", + "name": "findTokenToggle", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", + "name": "AbstractWrapper.fireEvent", }, - "name": "findByClassName", + "name": "fireEvent", "parameters": [ { "flags": { "isOptional": false, }, - "name": "className", - "typeName": "string", + "name": "event", + "typeName": "Event", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", "inheritedFrom": { - "name": "AbstractWrapper.findComponent", + "name": "BaseInputWrapper.focus", }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], + "name": "focus", + "parameters": [], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "name": "findDismissButton", + "inheritedFrom": { + "name": "AbstractWrapper.getElement", + }, + "name": "getElement", "parameters": [], "returnType": { - "name": "ButtonWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementType", }, }, { - "name": "findFooter", + "description": "Gets the value of the component. + +Returns the current value of the input.", + "inheritedFrom": { + "name": "BaseInputWrapper.getInputValue", + }, + "name": "getInputValue", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "string", }, }, { - "name": "findHeader", + "inheritedFrom": { + "name": "BaseInputWrapper.isDisabled", + }, + "name": "isDisabled", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "boolean", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", + "name": "AbstractWrapper.keydown", }, - "name": "fireEvent", + "name": "keydown", "parameters": [ { "flags": { "isOptional": false, }, - "name": "event", - "typeName": "Event", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "HTMLElement", - "type": "reference", }, }, { @@ -54523,13 +58648,13 @@ Component's wrapper class", "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -54547,8 +58672,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -54566,8 +58691,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -54585,12 +58710,93 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", + }, + }, + { + "description": "Selects a suggestion from the dropdown by simulating mouse events.", + "inheritedFrom": { + "name": "AutosuggestWrapper.selectSuggestion", + }, + "name": "selectSuggestion", + "parameters": [ + { + "description": "1-based index of the suggestion to select.", + "flags": { + "isOptional": false, + }, + "name": "index", + "typeName": "number", + }, + { + "defaultValue": "{ expandToViewport: false }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", + "flags": { + "isOptional": false, + }, + "name": "options", + "typeName": "{ expandToViewport: boolean; }", + }, + ], + "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "description": "Selects a suggestion from the dropdown by simulating mouse events.", + "inheritedFrom": { + "name": "AutosuggestWrapper.selectSuggestionByValue", + }, + "name": "selectSuggestionByValue", + "parameters": [ + { + "description": "value of suggestion to select", + "flags": { + "isOptional": false, + }, + "name": "value", + "typeName": "string", + }, + { + "defaultValue": "{ expandToViewport: false }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", + "flags": { + "isOptional": false, + }, + "name": "options", + "typeName": "{ expandToViewport: boolean; }", + }, + ], + "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "description": "Sets the value of the component and calls the \`onChange\` handler", + "inheritedFrom": { + "name": "BaseInputWrapper.setInputValue", + }, + "name": "setInputValue", + "parameters": [ + { + "description": "The value the input is set to.", + "flags": { + "isOptional": false, + }, + "name": "value", + "typeName": "string", + }, + ], + "returnType": { + "isNullable": false, + "name": "void", }, }, ], - "name": "ChartTooltipWrapper", + "name": "PropertyFilterWrapper", }, { "methods": [ @@ -54601,8 +58807,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -54622,8 +58828,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -54641,8 +58847,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -54660,8 +58871,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -54679,8 +58895,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -54693,28 +58914,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -54730,12 +58951,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -54753,23 +58979,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -54777,50 +59007,95 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "name": "findDefaultFilter", + "name": "findEditButton", "parameters": [], "returnType": { - "name": "ChartFilterWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLButtonElement", + }, + ], }, }, { - "name": "findDetailPopover", + "description": "Returns dropdown content of editing token if opened or \`null\` otherwise.", + "name": "findEditorDropdown", + "parameters": [ + { + "defaultValue": "{ expandToViewport: false }", + "flags": { + "isOptional": false, + }, + "name": "options", + "typeName": "{ expandToViewport: boolean; }", + }, + ], + "returnType": { + "isNullable": true, + "name": "PropertyFilterEditorDropdownWrapper", + }, + }, + { + "name": "findGroupTokens", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "FilteringGroupedTokenWrapper", + }, + ], + }, + }, + { + "name": "findLabel", "parameters": [], "returnType": { - "name": "ChartPopoverWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "name": "findLegend", + "name": "findRemoveButton", "parameters": [], "returnType": { - "name": "ChartLegendWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLButtonElement", + }, + ], }, }, { - "name": "findStatusContainer", + "name": "findTokenOperation", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "SelectWrapper", }, }, { @@ -54838,8 +59113,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -54849,8 +59124,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -54860,8 +59135,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -54879,8 +59154,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -54898,8 +59192,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -54917,8 +59211,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -54936,12 +59230,12 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "CommonChartWrapper", + "name": "FilteringTokenWrapper", }, { "methods": [ @@ -54952,8 +59246,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -54973,8 +59267,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -54992,8 +59286,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -55011,8 +59310,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -55030,8 +59334,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -55044,40 +59353,32 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, }, - { - "name": "findAllVisibleDirectionButtons", - "parameters": [], - "returnType": { - "name": "Array | null", - "type": "union", - }, - }, { "inheritedFrom": { "name": "AbstractWrapper.findAny", @@ -55089,12 +59390,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -55112,23 +59418,35 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], + }, + }, + { + "name": "findCancelButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ButtonWrapper", }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -55136,50 +59454,135 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", + }, + }, + { + "name": "findDismissButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ButtonWrapper", }, }, { - "name": "findVisibleDirectionButtonBlockEnd", + "name": "findForm", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "name": "findVisibleDirectionButtonBlockStart", + "name": "findHeader", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findOperatorField", + "parameters": [ + { + "defaultValue": "1", + "flags": { + "isOptional": false, + }, + "name": "index", + "typeName": "number", + }, + ], + "returnType": { + "isNullable": false, + "name": "FormFieldWrapper", + }, + }, + { + "name": "findPropertyField", + "parameters": [ + { + "defaultValue": "1", + "flags": { + "isOptional": false, + }, + "name": "index", + "typeName": "number", + }, + ], + "returnType": { + "isNullable": false, + "name": "FormFieldWrapper", }, }, { - "name": "findVisibleDirectionButtonInlineEnd", + "name": "findSubmitButton", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ButtonWrapper", }, }, { - "name": "findVisibleDirectionButtonInlineStart", + "name": "findTokenAddActions", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ButtonDropdownWrapper", + }, + }, + { + "name": "findTokenRemoveActions", + "parameters": [ + { + "defaultValue": "1", + "flags": { + "isOptional": false, + }, + "name": "index", + "typeName": "number", + }, + ], + "returnType": { + "isNullable": true, + "name": "ButtonDropdownWrapper", + }, + }, + { + "name": "findValueField", + "parameters": [ + { + "defaultValue": "1", + "flags": { + "isOptional": false, + }, + "name": "index", + "typeName": "number", + }, + ], + "returnType": { + "isNullable": false, + "name": "FormFieldWrapper", }, }, { @@ -55197,8 +59600,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -55208,8 +59611,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -55219,8 +59622,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -55238,8 +59641,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -55257,8 +59679,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -55276,8 +59698,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -55295,12 +59717,12 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "DragHandleWrapper", + "name": "PropertyFilterEditorDropdownWrapper", }, { "methods": [ @@ -55311,8 +59733,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -55332,8 +59754,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -55351,29 +59773,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the wrapper of the first Alert that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Alert. -If no matching Alert is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findAlert", - }, - "name": "findAlert", - "parameters": [ - { - "flags": { - "isOptional": true, + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", }, - "name": "selector", - }, - ], - "returnType": { - "name": "AlertWrapper | null", - "type": "union", + ], }, }, { @@ -55391,592 +59797,430 @@ If no matching Alert is found, returns \`null\`.", }, ], "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "description": "Returns an array of Alert wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Alerts inside the current wrapper. -If no matching Alert is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllAlerts", - }, - "name": "findAllAlerts", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "AlertWrapper", - "type": "reference", + "name": "ElementWrapper", }, ], }, }, { - "description": "Returns an array of AnchorNavigation wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the AnchorNavigations inside the current wrapper. -If no matching AnchorNavigation is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllAnchorNavigations", + "name": "AbstractWrapper.findAllByClassName", }, - "name": "findAllAnchorNavigations", + "name": "findAllByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "AnchorNavigationWrapper", - "type": "reference", + "name": "ElementWrapper", }, ], }, }, { - "description": "Returns an array of Annotation wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Annotations inside the current wrapper. -If no matching Annotation is found, returns an empty array.", + "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. +If no CSS selector is specified, returns all of the components that match the specified component type. +If no matching component is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllAnnotations", + "name": "AbstractWrapper.findAllComponents", }, - "name": "findAllAnnotations", + "name": "findAllComponents", "parameters": [ { + "description": "Component's wrapper class", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "ComponentClass", + "typeName": "ComponentWrapperClass", }, - ], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "AnnotationWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns an array of AppLayoutToolbar wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the AppLayoutToolbars inside the current wrapper. -If no matching AppLayoutToolbar is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllAppLayoutToolbars", - }, - "name": "findAllAppLayoutToolbars", - "parameters": [ { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "AppLayoutToolbarWrapper", - "type": "reference", + "name": "Wrapper", }, ], }, }, { - "description": "Returns an array of AppLayout wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the AppLayouts inside the current wrapper. -If no matching AppLayout is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllAppLayouts", + "name": "AbstractWrapper.findAny", }, - "name": "findAllAppLayouts", + "name": "findAny", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "selectors", + "typeName": "Array", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "AppLayoutWrapper", - "type": "reference", + "name": "NewElementType", }, ], }, }, { - "description": "Returns an array of AreaChart wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the AreaCharts inside the current wrapper. -If no matching AreaChart is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllAreaCharts", + "name": "AbstractWrapper.findByClassName", }, - "name": "findAllAreaCharts", + "name": "findByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "AreaChartWrapper", - "type": "reference", + "name": "NewElementType", }, ], }, }, { - "description": "Returns an array of AttributeEditor wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the AttributeEditors inside the current wrapper. -If no matching AttributeEditor is found, returns an empty array.", + "description": "Returns the component wrapper matching the specified selector. +If the specified selector doesn't match any element, it returns \`null\`. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { - "name": "ElementWrapper.findAllAttributeEditors", + "name": "AbstractWrapper.findComponent", }, - "name": "findAllAttributeEditors", + "name": "findComponent", "parameters": [ { + "description": "CSS selector", "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, - ], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "AttributeEditorWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns an array of Autosuggest wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Autosuggests inside the current wrapper. -If no matching Autosuggest is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllAutosuggests", - }, - "name": "findAllAutosuggests", - "parameters": [ { + "description": "Component's wrapper class", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "ComponentClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "Wrapper", + }, + }, + { + "name": "findLabel", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", "typeArguments": [ { - "name": "AutosuggestWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "description": "Returns an array of Badge wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Badges inside the current wrapper. -If no matching Badge is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllBadges", - }, - "name": "findAllBadges", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findRemoveButton", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", "typeArguments": [ { - "name": "BadgeWrapper", - "type": "reference", + "name": "HTMLButtonElement", }, ], }, }, { - "description": "Returns an array of BarChart wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the BarCharts inside the current wrapper. -If no matching BarChart is found, returns an empty array.", + "name": "findTokenOperation", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "SelectWrapper", + }, + }, + { "inheritedFrom": { - "name": "ElementWrapper.findAllBarCharts", + "name": "AbstractWrapper.fireEvent", }, - "name": "findAllBarCharts", + "name": "fireEvent", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "event", + "typeName": "Event", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "BarChartWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of Box wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Boxes inside the current wrapper. -If no matching Box is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllBoxes", + "name": "AbstractWrapper.focus", }, - "name": "findAllBoxes", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "focus", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "BoxWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of BreadcrumbGroup wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the BreadcrumbGroups inside the current wrapper. -If no matching BreadcrumbGroup is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllBreadcrumbGroups", + "name": "AbstractWrapper.getElement", }, - "name": "findAllBreadcrumbGroups", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "getElement", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "BreadcrumbGroupWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "ElementType", }, }, { - "description": "Returns an array of ButtonDropdown wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the ButtonDropdowns inside the current wrapper. -If no matching ButtonDropdown is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllButtonDropdowns", + "name": "AbstractWrapper.keydown", }, - "name": "findAllButtonDropdowns", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ButtonDropdownWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of ButtonGroup wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the ButtonGroups inside the current wrapper. -If no matching ButtonGroup is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllButtonGroups", + "name": "AbstractWrapper.keydown", }, - "name": "findAllButtonGroups", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ButtonGroupWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of Button wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Buttons inside the current wrapper. -If no matching Button is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllButtons", + "name": "AbstractWrapper.keypress", }, - "name": "findAllButtons", + "name": "keypress", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ButtonWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", + "name": "AbstractWrapper.keyup", }, - "name": "findAllByClassName", + "name": "keyup", "parameters": [ { "flags": { "isOptional": false, }, - "name": "className", - "typeName": "string", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of Calendar wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Calendars inside the current wrapper. -If no matching Calendar is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllCalendars", + "name": "AbstractWrapper.matches", }, - "name": "findAllCalendars", + "name": "matches", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "CalendarWrapper", - "type": "reference", - }, - ], + "isNullable": true, + "name": "this", }, }, + ], + "name": "FilteringGroupedTokenWrapper", + }, + { + "methods": [ { - "description": "Returns an array of Cards wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Cards inside the current wrapper. -If no matching Cards is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllCards", + "name": "AbstractWrapper.blur", }, - "name": "findAllCards", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "blur", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "CardsWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of Checkbox wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Checkboxes inside the current wrapper. -If no matching Checkbox is found, returns an empty array.", + "description": "Performs a click by triggering a mouse event. +Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", "inheritedFrom": { - "name": "ElementWrapper.findAllCheckboxes", + "name": "AbstractWrapper.click", }, - "name": "findAllCheckboxes", + "name": "click", "parameters": [ { "flags": { "isOptional": true, }, - "name": "selector", + "name": "params", + "typeName": "MouseEventInit", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "CheckboxWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of CodeEditor wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the CodeEditors inside the current wrapper. -If no matching CodeEditor is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllCodeEditors", + "name": "AbstractWrapper.find", }, - "name": "findAllCodeEditors", + "name": "find", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "CodeEditorWrapper", - "type": "reference", + "name": "NewElementType", }, ], }, }, { - "description": "Returns an array of CollectionPreferences wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the CollectionPreferences inside the current wrapper. -If no matching CollectionPreferences is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllCollectionPreferences", + "name": "AbstractWrapper.findAll", }, - "name": "findAllCollectionPreferences", + "name": "findAll", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "CollectionPreferencesWrapper", - "type": "reference", + "name": "ElementWrapper", }, ], }, }, { - "description": "Returns an array of ColumnLayout wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the ColumnLayouts inside the current wrapper. -If no matching ColumnLayout is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllColumnLayouts", + "name": "AbstractWrapper.findAllByClassName", }, - "name": "findAllColumnLayouts", + "name": "findAllByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "ColumnLayoutWrapper", - "type": "reference", + "name": "ElementWrapper", }, ], }, @@ -55991,1719 +60235,1660 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, }, { - "description": "Returns an array of Container wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Containers inside the current wrapper. -If no matching Container is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllContainers", + "name": "AbstractWrapper.findAny", }, - "name": "findAllContainers", + "name": "findAny", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "selectors", + "typeName": "Array", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "ContainerWrapper", - "type": "reference", + "name": "NewElementType", }, ], }, }, { - "description": "Returns an array of ContentLayout wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the ContentLayouts inside the current wrapper. -If no matching ContentLayout is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllContentLayouts", - }, - "name": "findAllContentLayouts", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findButtons", + "parameters": [], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "ContentLayoutWrapper", - "type": "reference", + "name": "RadioButtonWrapper", }, ], }, }, { - "description": "Returns an array of CopyToClipboard wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the CopyToClipboards inside the current wrapper. -If no matching CopyToClipboard is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllCopyToClipboards", + "name": "AbstractWrapper.findByClassName", }, - "name": "findAllCopyToClipboards", + "name": "findByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "CopyToClipboardWrapper", - "type": "reference", + "name": "NewElementType", }, ], }, }, { - "description": "Returns an array of DateInput wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the DateInputs inside the current wrapper. -If no matching DateInput is found, returns an empty array.", + "description": "Returns the component wrapper matching the specified selector. +If the specified selector doesn't match any element, it returns \`null\`. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { - "name": "ElementWrapper.findAllDateInputs", + "name": "AbstractWrapper.findComponent", }, - "name": "findAllDateInputs", + "name": "findComponent", "parameters": [ { + "description": "CSS selector", "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", + }, + { + "description": "Component's wrapper class", + "flags": { + "isOptional": false, + }, + "name": "ComponentClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "DateInputWrapper", - "type": "reference", - }, - ], + "isNullable": true, + "name": "Wrapper", }, }, { - "description": "Returns an array of DatePicker wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the DatePickers inside the current wrapper. -If no matching DatePicker is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllDatePickers", - }, - "name": "findAllDatePickers", + "name": "findInputByValue", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "value", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "DatePickerWrapper", - "type": "reference", + "name": "HTMLInputElement", }, ], }, }, { - "description": "Returns an array of DateRangePicker wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the DateRangePickers inside the current wrapper. -If no matching DateRangePicker is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllDateRangePickers", + "name": "AbstractWrapper.fireEvent", }, - "name": "findAllDateRangePickers", + "name": "fireEvent", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "event", + "typeName": "Event", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "DateRangePickerWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.focus", + }, + "name": "focus", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.getElement", + }, + "name": "getElement", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementType", }, }, { - "description": "Returns an array of Drawer wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Drawers inside the current wrapper. -If no matching Drawer is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllDrawers", + "name": "AbstractWrapper.keydown", }, - "name": "findAllDrawers", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "DrawerWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of ExpandableSection wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the ExpandableSections inside the current wrapper. -If no matching ExpandableSection is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllExpandableSections", + "name": "AbstractWrapper.keydown", }, - "name": "findAllExpandableSections", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ExpandableSectionWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of FileDropzone wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the FileDropzones inside the current wrapper. -If no matching FileDropzone is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllFileDropzones", + "name": "AbstractWrapper.keypress", }, - "name": "findAllFileDropzones", + "name": "keypress", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "FileDropzoneWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of FileInput wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the FileInputs inside the current wrapper. -If no matching FileInput is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllFileInputs", + "name": "AbstractWrapper.keyup", }, - "name": "findAllFileInputs", + "name": "keyup", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "FileInputWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of FileTokenGroup wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the FileTokenGroups inside the current wrapper. -If no matching FileTokenGroup is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllFileTokenGroups", + "name": "AbstractWrapper.matches", }, - "name": "findAllFileTokenGroups", + "name": "matches", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "FileTokenGroupWrapper", - "type": "reference", - }, - ], + "isNullable": true, + "name": "this", + }, + }, + ], + "name": "RadioGroupWrapper", + }, + { + "methods": [ + { + "inheritedFrom": { + "name": "AbstractWrapper.blur", + }, + "name": "blur", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of FileUpload wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the FileUploads inside the current wrapper. -If no matching FileUpload is found, returns an empty array.", + "description": "Performs a click by triggering a mouse event. +Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", "inheritedFrom": { - "name": "ElementWrapper.findAllFileUploads", + "name": "AbstractWrapper.click", }, - "name": "findAllFileUploads", + "name": "click", "parameters": [ { "flags": { "isOptional": true, }, - "name": "selector", + "name": "params", + "typeName": "MouseEventInit", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "FileUploadWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of Flashbar wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Flashbars inside the current wrapper. -If no matching Flashbar is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllFlashbars", + "name": "AbstractWrapper.find", }, - "name": "findAllFlashbars", + "name": "find", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "FlashbarWrapper", - "type": "reference", + "name": "NewElementType", }, ], }, }, { - "description": "Returns an array of FormField wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the FormFields inside the current wrapper. -If no matching FormField is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllFormFields", - }, - "name": "findAllFormFields", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findAlertSlot", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "FormFieldWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "description": "Returns an array of Form wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Forms inside the current wrapper. -If no matching Form is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllForms", + "name": "AbstractWrapper.findAll", }, - "name": "findAllForms", + "name": "findAll", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "FormWrapper", - "type": "reference", + "name": "ElementWrapper", }, ], }, }, { - "description": "Returns an array of Grid wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Grids inside the current wrapper. -If no matching Grid is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllGrids", + "name": "AbstractWrapper.findAllByClassName", }, - "name": "findAllGrids", + "name": "findAllByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "GridWrapper", - "type": "reference", + "name": "ElementWrapper", }, ], }, }, { - "description": "Returns an array of Header wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Headers inside the current wrapper. -If no matching Header is found, returns an empty array.", + "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. +If no CSS selector is specified, returns all of the components that match the specified component type. +If no matching component is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllHeaders", + "name": "AbstractWrapper.findAllComponents", }, - "name": "findAllHeaders", + "name": "findAllComponents", "parameters": [ { + "description": "Component's wrapper class", + "flags": { + "isOptional": false, + }, + "name": "ComponentClass", + "typeName": "ComponentWrapperClass", + }, + { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "HeaderWrapper", - "type": "reference", + "name": "Wrapper", }, ], }, }, { - "description": "Returns an array of HelpPanel wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the HelpPanels inside the current wrapper. -If no matching HelpPanel is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllHelpPanels", + "name": "AbstractWrapper.findAny", }, - "name": "findAllHelpPanels", + "name": "findAny", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "selectors", + "typeName": "Array", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "HelpPanelWrapper", - "type": "reference", + "name": "NewElementType", }, ], }, }, { - "description": "Returns an array of Hotspot wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Hotspots inside the current wrapper. -If no matching Hotspot is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllHotspots", + "name": "AbstractWrapper.findByClassName", }, - "name": "findAllHotspots", + "name": "findByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "HotspotWrapper", - "type": "reference", + "name": "NewElementType", }, ], }, }, { - "description": "Returns an array of Icon wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Icons inside the current wrapper. -If no matching Icon is found, returns an empty array.", + "description": "Returns the component wrapper matching the specified selector. +If the specified selector doesn't match any element, it returns \`null\`. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { - "name": "ElementWrapper.findAllIcons", + "name": "AbstractWrapper.findComponent", }, - "name": "findAllIcons", + "name": "findComponent", "parameters": [ { + "description": "CSS selector", "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", + }, + { + "description": "Component's wrapper class", + "flags": { + "isOptional": false, + }, + "name": "ComponentClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "IconWrapper", - "type": "reference", - }, - ], + "isNullable": true, + "name": "Wrapper", + }, + }, + { + "name": "findInContext", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "S3InContextWrapper", + }, + }, + { + "name": "findModal", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "S3ModalWrapper", + }, + }, + { + "name": "findTable", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "TableWrapper", }, }, { - "description": "Returns an array of Input wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Inputs inside the current wrapper. -If no matching Input is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllInputs", + "name": "AbstractWrapper.fireEvent", }, - "name": "findAllInputs", + "name": "fireEvent", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "event", + "typeName": "Event", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "InputWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.focus", + }, + "name": "focus", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.getElement", + }, + "name": "getElement", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementType", }, }, { - "description": "Returns an array of KeyValuePairs wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the KeyValuePairs inside the current wrapper. -If no matching KeyValuePairs is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllKeyValuePairs", + "name": "AbstractWrapper.keydown", }, - "name": "findAllKeyValuePairs", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "KeyValuePairsWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of LineChart wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the LineCharts inside the current wrapper. -If no matching LineChart is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllLineCharts", + "name": "AbstractWrapper.keydown", }, - "name": "findAllLineCharts", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "LineChartWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of Link wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Links inside the current wrapper. -If no matching Link is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllLinks", + "name": "AbstractWrapper.keypress", }, - "name": "findAllLinks", + "name": "keypress", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "LinkWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of List wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Lists inside the current wrapper. -If no matching List is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllLists", + "name": "AbstractWrapper.keyup", }, - "name": "findAllLists", + "name": "keyup", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ListWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of LiveRegion wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the LiveRegions inside the current wrapper. -If no matching LiveRegion is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllLiveRegions", + "name": "AbstractWrapper.matches", }, - "name": "findAllLiveRegions", + "name": "matches", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "LiveRegionWrapper", - "type": "reference", - }, - ], + "isNullable": true, + "name": "this", + }, + }, + ], + "name": "S3ResourceSelectorWrapper", + }, + { + "methods": [ + { + "inheritedFrom": { + "name": "AbstractWrapper.blur", + }, + "name": "blur", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of MixedLineBarChart wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the MixedLineBarCharts inside the current wrapper. -If no matching MixedLineBarChart is found, returns an empty array.", + "description": "Performs a click by triggering a mouse event. +Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", "inheritedFrom": { - "name": "ElementWrapper.findAllMixedLineBarCharts", + "name": "AbstractWrapper.click", }, - "name": "findAllMixedLineBarCharts", + "name": "click", "parameters": [ { "flags": { "isOptional": true, }, - "name": "selector", + "name": "params", + "typeName": "MouseEventInit", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "MixedLineBarChartWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of Modal wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Modals inside the current wrapper. -If no matching Modal is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllModals", + "name": "AbstractWrapper.find", }, - "name": "findAllModals", + "name": "find", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "ModalWrapper", - "type": "reference", + "name": "NewElementType", }, ], }, }, { - "description": "Returns an array of Multiselect wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Multiselects inside the current wrapper. -If no matching Multiselect is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllMultiselects", + "name": "AbstractWrapper.findAll", }, - "name": "findAllMultiselects", + "name": "findAll", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "MultiselectWrapper", - "type": "reference", + "name": "ElementWrapper", }, ], }, }, { - "description": "Returns an array of Pagination wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Paginations inside the current wrapper. -If no matching Pagination is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllPaginations", + "name": "AbstractWrapper.findAllByClassName", }, - "name": "findAllPaginations", + "name": "findAllByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "PaginationWrapper", - "type": "reference", + "name": "ElementWrapper", }, ], }, }, { - "description": "Returns an array of PieChart wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the PieCharts inside the current wrapper. -If no matching PieChart is found, returns an empty array.", + "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. +If no CSS selector is specified, returns all of the components that match the specified component type. +If no matching component is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllPieCharts", + "name": "AbstractWrapper.findAllComponents", }, - "name": "findAllPieCharts", + "name": "findAllComponents", "parameters": [ { + "description": "Component's wrapper class", + "flags": { + "isOptional": false, + }, + "name": "ComponentClass", + "typeName": "ComponentWrapperClass", + }, + { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "PieChartWrapper", - "type": "reference", + "name": "Wrapper", }, ], }, }, { - "description": "Returns an array of Popover wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Popovers inside the current wrapper. -If no matching Popover is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllPopovers", + "name": "AbstractWrapper.findAny", }, - "name": "findAllPopovers", + "name": "findAny", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "selectors", + "typeName": "Array", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "PopoverWrapper", - "type": "reference", + "name": "NewElementType", }, ], }, }, { - "description": "Returns an array of ProgressBar wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the ProgressBars inside the current wrapper. -If no matching ProgressBar is found, returns an empty array.", + "name": "findBrowseButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ButtonWrapper", + }, + }, + { "inheritedFrom": { - "name": "ElementWrapper.findAllProgressBars", + "name": "AbstractWrapper.findByClassName", }, - "name": "findAllProgressBars", + "name": "findByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "ProgressBarWrapper", - "type": "reference", + "name": "NewElementType", }, ], }, }, { - "description": "Returns an array of PromptInput wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the PromptInputs inside the current wrapper. -If no matching PromptInput is found, returns an empty array.", + "description": "Returns the component wrapper matching the specified selector. +If the specified selector doesn't match any element, it returns \`null\`. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { - "name": "ElementWrapper.findAllPromptInputs", + "name": "AbstractWrapper.findComponent", }, - "name": "findAllPromptInputs", + "name": "findComponent", "parameters": [ { + "description": "CSS selector", "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", + }, + { + "description": "Component's wrapper class", + "flags": { + "isOptional": false, + }, + "name": "ComponentClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "PromptInputWrapper", - "type": "reference", - }, - ], + "isNullable": true, + "name": "Wrapper", + }, + }, + { + "name": "findUriInput", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "InputWrapper", + }, + }, + { + "name": "findVersionsSelect", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "SelectWrapper", + }, + }, + { + "name": "findViewButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ButtonWrapper", }, }, { - "description": "Returns an array of PropertyFilter wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the PropertyFilters inside the current wrapper. -If no matching PropertyFilter is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllPropertyFilters", + "name": "AbstractWrapper.fireEvent", }, - "name": "findAllPropertyFilters", + "name": "fireEvent", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "event", + "typeName": "Event", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "PropertyFilterWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.focus", + }, + "name": "focus", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of RadioGroup wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the RadioGroups inside the current wrapper. -If no matching RadioGroup is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllRadioGroups", + "name": "AbstractWrapper.getElement", + }, + "name": "getElement", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementType", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", }, - "name": "findAllRadioGroups", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "RadioGroupWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of S3ResourceSelector wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the S3ResourceSelectors inside the current wrapper. -If no matching S3ResourceSelector is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllS3ResourceSelectors", + "name": "AbstractWrapper.keydown", }, - "name": "findAllS3ResourceSelectors", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "S3ResourceSelectorWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of SegmentedControl wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the SegmentedControls inside the current wrapper. -If no matching SegmentedControl is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllSegmentedControls", + "name": "AbstractWrapper.keypress", }, - "name": "findAllSegmentedControls", + "name": "keypress", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "SegmentedControlWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of Select wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Selects inside the current wrapper. -If no matching Select is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllSelects", + "name": "AbstractWrapper.keyup", }, - "name": "findAllSelects", + "name": "keyup", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "SelectWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of SideNavigation wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the SideNavigations inside the current wrapper. -If no matching SideNavigation is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllSideNavigations", + "name": "AbstractWrapper.matches", }, - "name": "findAllSideNavigations", + "name": "matches", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "SideNavigationWrapper", - "type": "reference", - }, - ], + "isNullable": true, + "name": "this", + }, + }, + ], + "name": "S3InContextWrapper", + }, + { + "methods": [ + { + "inheritedFrom": { + "name": "AbstractWrapper.blur", + }, + "name": "blur", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of Slider wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Sliders inside the current wrapper. -If no matching Slider is found, returns an empty array.", + "description": "Performs a click by triggering a mouse event. +Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", "inheritedFrom": { - "name": "ElementWrapper.findAllSliders", + "name": "AbstractWrapper.click", }, - "name": "findAllSliders", + "name": "click", "parameters": [ { "flags": { "isOptional": true, }, - "name": "selector", + "name": "params", + "typeName": "MouseEventInit", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "SliderWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of SpaceBetween wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the SpaceBetweens inside the current wrapper. -If no matching SpaceBetween is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllSpaceBetweens", + "name": "AbstractWrapper.find", }, - "name": "findAllSpaceBetweens", + "name": "find", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "SpaceBetweenWrapper", - "type": "reference", + "name": "NewElementType", }, ], }, }, { - "description": "Returns an array of Spinner wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Spinners inside the current wrapper. -If no matching Spinner is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllSpinners", + "name": "AbstractWrapper.findAll", }, - "name": "findAllSpinners", + "name": "findAll", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "SpinnerWrapper", - "type": "reference", + "name": "ElementWrapper", }, ], }, }, { - "description": "Returns an array of SplitPanel wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the SplitPanels inside the current wrapper. -If no matching SplitPanel is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllSplitPanels", + "name": "AbstractWrapper.findAllByClassName", }, - "name": "findAllSplitPanels", + "name": "findAllByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "SplitPanelWrapper", - "type": "reference", + "name": "ElementWrapper", }, ], }, }, { - "description": "Returns an array of StatusIndicator wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the StatusIndicators inside the current wrapper. -If no matching StatusIndicator is found, returns an empty array.", + "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. +If no CSS selector is specified, returns all of the components that match the specified component type. +If no matching component is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllStatusIndicators", + "name": "AbstractWrapper.findAllComponents", }, - "name": "findAllStatusIndicators", + "name": "findAllComponents", "parameters": [ { + "description": "Component's wrapper class", + "flags": { + "isOptional": false, + }, + "name": "ComponentClass", + "typeName": "ComponentWrapperClass", + }, + { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "StatusIndicatorWrapper", - "type": "reference", + "name": "Wrapper", }, ], }, }, { - "description": "Returns an array of Steps wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Steps inside the current wrapper. -If no matching Steps is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllSteps", + "name": "AbstractWrapper.findAny", }, - "name": "findAllSteps", + "name": "findAny", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "selectors", + "typeName": "Array", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "StepsWrapper", - "type": "reference", + "name": "NewElementType", }, ], }, }, { - "description": "Returns an array of Table wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Tables inside the current wrapper. -If no matching Table is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllTables", + "name": "AbstractWrapper.findByClassName", }, - "name": "findAllTables", + "name": "findByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "TableWrapper", - "type": "reference", + "name": "NewElementType", }, ], }, }, { - "description": "Returns an array of Tabs wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Tabs inside the current wrapper. -If no matching Tabs is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTabs", - }, - "name": "findAllTabs", - "parameters": [ + "description": "Returns the component wrapper matching the specified selector. +If the specified selector doesn't match any element, it returns \`null\`. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", + "inheritedFrom": { + "name": "AbstractWrapper.findComponent", + }, + "name": "findComponent", + "parameters": [ { + "description": "CSS selector", "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", + }, + { + "description": "Component's wrapper class", + "flags": { + "isOptional": false, + }, + "name": "ComponentClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "Wrapper", + }, + }, + { + "inheritedFrom": { + "name": "ModalWrapper.findContent", + }, + "name": "findContent", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", "typeArguments": [ { - "name": "TabsWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "description": "Returns an array of TagEditor wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the TagEditors inside the current wrapper. -If no matching TagEditor is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllTagEditors", + "name": "ModalWrapper.findDismissButton", }, - "name": "findAllTagEditors", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findDismissButton", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", "typeArguments": [ { - "name": "TagEditorWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "description": "Returns an array of TextContent wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the TextContents inside the current wrapper. -If no matching TextContent is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllTextContents", + "name": "ModalWrapper.findFooter", }, - "name": "findAllTextContents", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findFooter", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "TextContentWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "description": "Returns an array of TextFilter wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the TextFilters inside the current wrapper. -If no matching TextFilter is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllTextFilters", + "name": "ModalWrapper.findHeader", }, - "name": "findAllTextFilters", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findHeader", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", "typeArguments": [ { - "name": "TextFilterWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "description": "Returns an array of Textarea wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Textareas inside the current wrapper. -If no matching Textarea is found, returns an empty array.", + "name": "findSubmitButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ButtonWrapper", + }, + }, + { "inheritedFrom": { - "name": "ElementWrapper.findAllTextareas", + "name": "AbstractWrapper.fireEvent", }, - "name": "findAllTextareas", + "name": "fireEvent", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "event", + "typeName": "Event", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "TextareaWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.focus", + }, + "name": "focus", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.getElement", + }, + "name": "getElement", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementType", + }, + }, + { + "inheritedFrom": { + "name": "ModalWrapper.isVisible", + }, + "name": "isVisible", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "boolean", }, }, { - "description": "Returns an array of Tiles wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Tiles inside the current wrapper. -If no matching Tiles is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllTiles", + "name": "AbstractWrapper.keydown", }, - "name": "findAllTiles", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "TilesWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of TimeInput wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the TimeInputs inside the current wrapper. -If no matching TimeInput is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllTimeInputs", + "name": "AbstractWrapper.keydown", }, - "name": "findAllTimeInputs", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "TimeInputWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of ToggleButton wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the ToggleButtons inside the current wrapper. -If no matching ToggleButton is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllToggleButtons", + "name": "AbstractWrapper.keypress", }, - "name": "findAllToggleButtons", + "name": "keypress", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ToggleButtonWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of Toggle wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Toggles inside the current wrapper. -If no matching Toggle is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllToggles", + "name": "AbstractWrapper.keyup", }, - "name": "findAllToggles", + "name": "keyup", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ToggleWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of TokenGroup wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the TokenGroups inside the current wrapper. -If no matching TokenGroup is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllTokenGroups", + "name": "AbstractWrapper.matches", }, - "name": "findAllTokenGroups", + "name": "matches", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "TokenGroupWrapper", - "type": "reference", - }, - ], + "isNullable": true, + "name": "this", + }, + }, + ], + "name": "S3ModalWrapper", + }, + { + "methods": [ + { + "inheritedFrom": { + "name": "AbstractWrapper.blur", + }, + "name": "blur", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of TopNavigation wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the TopNavigations inside the current wrapper. -If no matching TopNavigation is found, returns an empty array.", + "description": "Performs a click by triggering a mouse event. +Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", "inheritedFrom": { - "name": "ElementWrapper.findAllTopNavigations", + "name": "AbstractWrapper.click", }, - "name": "findAllTopNavigations", + "name": "click", "parameters": [ { "flags": { "isOptional": true, }, - "name": "selector", + "name": "params", + "typeName": "MouseEventInit", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "TopNavigationWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of TreeView wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the TreeViews inside the current wrapper. -If no matching TreeView is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllTreeViews", + "name": "AbstractWrapper.find", }, - "name": "findAllTreeViews", + "name": "find", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "TreeViewWrapper", - "type": "reference", + "name": "NewElementType", }, ], }, }, { - "description": "Returns an array of TutorialPanel wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the TutorialPanels inside the current wrapper. -If no matching TutorialPanel is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllTutorialPanels", + "name": "AbstractWrapper.findAll", }, - "name": "findAllTutorialPanels", + "name": "findAll", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "TutorialPanelWrapper", - "type": "reference", + "name": "ElementWrapper", }, ], }, }, { - "description": "Returns an array of Wizard wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Wizards inside the current wrapper. -If no matching Wizard is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllWizards", + "name": "AbstractWrapper.findAllByClassName", }, - "name": "findAllWizards", + "name": "findAllByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "WizardWrapper", - "type": "reference", + "name": "ElementWrapper", }, ], }, }, { - "description": "Returns the wrapper of the first AnchorNavigation that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first AnchorNavigation. -If no matching AnchorNavigation is found, returns \`null\`.", + "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. +If no CSS selector is specified, returns all of the components that match the specified component type. +If no matching component is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAnchorNavigation", + "name": "AbstractWrapper.findAllComponents", }, - "name": "findAnchorNavigation", + "name": "findAllComponents", "parameters": [ { + "description": "Component's wrapper class", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "ComponentClass", + "typeName": "ComponentWrapperClass", }, - ], - "returnType": { - "name": "AnchorNavigationWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the wrapper of the first Annotation that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Annotation. -If no matching Annotation is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findAnnotation", - }, - "name": "findAnnotation", - "parameters": [ { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "AnnotationWrapper | null", - "type": "union", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "Wrapper", + }, + ], }, }, { @@ -57717,1732 +61902,1575 @@ If no matching Annotation is found, returns \`null\`.", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { - "description": "Returns the wrapper of the first AppLayout that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first AppLayout. -If no matching AppLayout is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findAppLayout", + "name": "AbstractWrapper.findByClassName", }, - "name": "findAppLayout", + "name": "findByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "AppLayoutWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { - "description": "Returns the wrapper of the first AppLayoutToolbar that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first AppLayoutToolbar. -If no matching AppLayoutToolbar is found, returns \`null\`.", + "description": "Returns the component wrapper matching the specified selector. +If the specified selector doesn't match any element, it returns \`null\`. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { - "name": "ElementWrapper.findAppLayoutToolbar", + "name": "AbstractWrapper.findComponent", }, - "name": "findAppLayoutToolbar", + "name": "findComponent", "parameters": [ { + "description": "CSS selector", "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, - ], - "returnType": { - "name": "AppLayoutToolbarWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the wrapper of the first AreaChart that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first AreaChart. -If no matching AreaChart is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findAreaChart", - }, - "name": "findAreaChart", - "parameters": [ { + "description": "Component's wrapper class", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "ComponentClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "AreaChartWrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "description": "Returns the wrapper of the first AttributeEditor that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first AttributeEditor. -If no matching AttributeEditor is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findAttributeEditor", - }, - "name": "findAttributeEditor", + "description": "Finds the segment with the given ID.", + "name": "findSegmentById", "parameters": [ { + "description": "ID of the element to return.", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "id", + "typeName": "string", }, ], "returnType": { - "name": "AttributeEditorWrapper | null", - "type": "union", + "isNullable": true, + "name": "SegmentWrapper", }, }, { - "description": "Returns the wrapper of the first Autosuggest that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Autosuggest. -If no matching Autosuggest is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findAutosuggest", - }, - "name": "findAutosuggest", - "parameters": [ - { - "flags": { - "isOptional": true, + "name": "findSegments", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", }, - "name": "selector", - }, - ], + ], + }, + }, + { + "name": "findSelectedSegment", + "parameters": [], "returnType": { - "name": "AutosuggestWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "description": "Returns the wrapper of the first Badge that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Badge. -If no matching Badge is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findBadge", + "name": "AbstractWrapper.fireEvent", }, - "name": "findBadge", + "name": "fireEvent", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "event", + "typeName": "Event", }, ], "returnType": { - "name": "BadgeWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first BarChart that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first BarChart. -If no matching BarChart is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findBarChart", + "name": "AbstractWrapper.focus", }, - "name": "findBarChart", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "focus", + "parameters": [], "returnType": { - "name": "BarChartWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first Box that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Box. -If no matching Box is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findBox", + "name": "AbstractWrapper.getElement", }, - "name": "findBox", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "getElement", + "parameters": [], "returnType": { - "name": "BoxWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementType", }, }, { - "description": "Returns the wrapper of the first BreadcrumbGroup that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first BreadcrumbGroup. -If no matching BreadcrumbGroup is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findBreadcrumbGroup", + "name": "AbstractWrapper.keydown", }, - "name": "findBreadcrumbGroup", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "BreadcrumbGroupWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first Button that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Button. -If no matching Button is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findButton", + "name": "AbstractWrapper.keydown", }, - "name": "findButton", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", }, ], "returnType": { - "name": "ButtonWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first ButtonDropdown that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first ButtonDropdown. -If no matching ButtonDropdown is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findButtonDropdown", + "name": "AbstractWrapper.keypress", }, - "name": "findButtonDropdown", + "name": "keypress", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "ButtonDropdownWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first ButtonGroup that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first ButtonGroup. -If no matching ButtonGroup is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findButtonGroup", + "name": "AbstractWrapper.keyup", }, - "name": "findButtonGroup", + "name": "keyup", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "ButtonGroupWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", + "name": "AbstractWrapper.matches", }, - "name": "findByClassName", + "name": "matches", "parameters": [ { "flags": { "isOptional": false, }, - "name": "className", + "name": "selector", "typeName": "string", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, + ], + "name": "SegmentedControlWrapper", + }, + { + "methods": [ { - "description": "Returns the wrapper of the first Calendar that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Calendar. -If no matching Calendar is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findCalendar", + "name": "AbstractWrapper.blur", }, - "name": "findCalendar", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "blur", + "parameters": [], "returnType": { - "name": "CalendarWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first Cards that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Cards. -If no matching Cards is found, returns \`null\`.", + "description": "Performs a click by triggering a mouse event. +Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", "inheritedFrom": { - "name": "ElementWrapper.findCards", + "name": "AbstractWrapper.click", }, - "name": "findCards", + "name": "click", "parameters": [ { "flags": { "isOptional": true, }, - "name": "selector", + "name": "params", + "typeName": "MouseEventInit", }, ], "returnType": { - "name": "CardsWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first Checkbox that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Checkbox. -If no matching Checkbox is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findCheckbox", + "name": "AbstractWrapper.find", }, - "name": "findCheckbox", + "name": "find", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "CheckboxWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { - "description": "Returns the wrapper of the first CodeEditor that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first CodeEditor. -If no matching CodeEditor is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findCodeEditor", + "name": "AbstractWrapper.findAll", }, - "name": "findCodeEditor", + "name": "findAll", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "CodeEditorWrapper | null", - "type": "union", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrapper of the first CollectionPreferences that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first CollectionPreferences. -If no matching CollectionPreferences is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findCollectionPreferences", + "name": "AbstractWrapper.findAllByClassName", }, - "name": "findCollectionPreferences", + "name": "findAllByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "CollectionPreferencesWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the wrapper of the first ColumnLayout that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first ColumnLayout. -If no matching ColumnLayout is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findColumnLayout", - }, - "name": "findColumnLayout", - "parameters": [ - { - "flags": { - "isOptional": true, + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", }, - "name": "selector", - }, - ], - "returnType": { - "name": "ColumnLayoutWrapper | null", - "type": "union", + ], }, }, { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. +If no CSS selector is specified, returns all of the components that match the specified component type. +If no matching component is found, returns an empty array.", "inheritedFrom": { - "name": "AbstractWrapper.findComponent", + "name": "AbstractWrapper.findAllComponents", }, - "name": "findComponent", + "name": "findAllComponents", "parameters": [ { - "description": " -CSS selector", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, - "name": "selector", - "typeName": "string", + "name": "ComponentClass", + "typeName": "ComponentWrapperClass", }, { - "description": " -Component's wrapper class", + "description": "CSS selector", "flags": { - "isOptional": false, + "isOptional": true, }, - "name": "ComponentClass", - "typeName": "WrapperClass", + "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "Wrapper", + }, + ], }, }, { - "description": "Returns the wrapper of the first Container that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Container. -If no matching Container is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findContainer", + "name": "AbstractWrapper.findAny", }, - "name": "findContainer", + "name": "findAny", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "selectors", + "typeName": "Array", }, ], "returnType": { - "name": "ContainerWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { - "description": "Returns the wrapper of the first ContentLayout that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first ContentLayout. -If no matching ContentLayout is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findContentLayout", + "name": "AbstractWrapper.findByClassName", }, - "name": "findContentLayout", + "name": "findByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "ContentLayoutWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { - "description": "Returns the wrapper of the first CopyToClipboard that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first CopyToClipboard. -If no matching CopyToClipboard is found, returns \`null\`.", + "description": "Returns the component wrapper matching the specified selector. +If the specified selector doesn't match any element, it returns \`null\`. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { - "name": "ElementWrapper.findCopyToClipboard", + "name": "AbstractWrapper.findComponent", }, - "name": "findCopyToClipboard", + "name": "findComponent", "parameters": [ { + "description": "CSS selector", "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", + }, + { + "description": "Component's wrapper class", + "flags": { + "isOptional": false, + }, + "name": "ComponentClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "CopyToClipboardWrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", + }, + }, + { + "name": "findDisabledReason", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "description": "Returns the wrapper of the first DateInput that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first DateInput. -If no matching DateInput is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findDateInput", + "name": "AbstractWrapper.fireEvent", }, - "name": "findDateInput", + "name": "fireEvent", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "event", + "typeName": "Event", }, ], "returnType": { - "name": "DateInputWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first DatePicker that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first DatePicker. -If no matching DatePicker is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findDatePicker", + "name": "AbstractWrapper.focus", }, - "name": "findDatePicker", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "focus", + "parameters": [], "returnType": { - "name": "DatePickerWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first DateRangePicker that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first DateRangePicker. -If no matching DateRangePicker is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findDateRangePicker", + "name": "AbstractWrapper.getElement", }, - "name": "findDateRangePicker", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "getElement", + "parameters": [], "returnType": { - "name": "DateRangePickerWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementType", }, }, { - "description": "Returns the wrapper of the first Drawer that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Drawer. -If no matching Drawer is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findDrawer", + "name": "AbstractWrapper.keydown", }, - "name": "findDrawer", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "DrawerWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first ExpandableSection that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first ExpandableSection. -If no matching ExpandableSection is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findExpandableSection", + "name": "AbstractWrapper.keydown", }, - "name": "findExpandableSection", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", }, ], "returnType": { - "name": "ExpandableSectionWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first FileDropzone that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first FileDropzone. -If no matching FileDropzone is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findFileDropzone", + "name": "AbstractWrapper.keypress", }, - "name": "findFileDropzone", + "name": "keypress", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "FileDropzoneWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first FileInput that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first FileInput. -If no matching FileInput is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findFileInput", + "name": "AbstractWrapper.keyup", }, - "name": "findFileInput", + "name": "keyup", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "FileInputWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first FileTokenGroup that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first FileTokenGroup. -If no matching FileTokenGroup is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findFileTokenGroup", + "name": "AbstractWrapper.matches", }, - "name": "findFileTokenGroup", + "name": "matches", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "FileTokenGroupWrapper | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, + ], + "name": "SegmentWrapper", + }, + { + "methods": [ { - "description": "Returns the wrapper of the first FileUpload that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first FileUpload. -If no matching FileUpload is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findFileUpload", + "name": "AbstractWrapper.blur", }, - "name": "findFileUpload", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "blur", + "parameters": [], "returnType": { - "name": "FileUploadWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first Flashbar that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Flashbar. -If no matching Flashbar is found, returns \`null\`.", + "description": "Performs a click by triggering a mouse event. +Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", "inheritedFrom": { - "name": "ElementWrapper.findFlashbar", + "name": "AbstractWrapper.click", }, - "name": "findFlashbar", + "name": "click", "parameters": [ { "flags": { "isOptional": true, }, - "name": "selector", + "name": "params", + "typeName": "MouseEventInit", }, ], "returnType": { - "name": "FlashbarWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first Form that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Form. -If no matching Form is found, returns \`null\`.", + "description": "Selects all options by triggering corresponding events on the element that selects or deselects all options in Multiselect when using the \`enableSelectAll\` flag. + +This utility does not open the dropdown of the given select. You will need to call \`openDropdown\` first in your test. + +Example: +\`\`\` +wrapper.openDropdown(); +wrapper.clickSelectAll(); +\`\`\`", "inheritedFrom": { - "name": "ElementWrapper.findForm", + "name": "DropdownHostComponentWrapper.clickSelectAll", }, - "name": "findForm", + "name": "clickSelectAll", "parameters": [ { + "defaultValue": "{ expandToViewport: false }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "options", + "typeName": "{ expandToViewport: boolean; }", }, ], "returnType": { - "name": "FormWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first FormField that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first FormField. -If no matching FormField is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findFormField", + "name": "DropdownHostComponentWrapper.closeDropdown", }, - "name": "findFormField", + "name": "closeDropdown", "parameters": [ { + "defaultValue": "{ expandToViewport: false }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "options", + "typeName": "{ expandToViewport: boolean; }", }, ], "returnType": { - "name": "FormFieldWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first Grid that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Grid. -If no matching Grid is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findGrid", + "name": "AbstractWrapper.find", }, - "name": "findGrid", + "name": "find", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "GridWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { - "description": "Returns the wrapper of the first Header that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Header. -If no matching Header is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findHeader", + "name": "AbstractWrapper.findAll", }, - "name": "findHeader", + "name": "findAll", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "HeaderWrapper | null", - "type": "union", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrapper of the first HelpPanel that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first HelpPanel. -If no matching HelpPanel is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findHelpPanel", + "name": "AbstractWrapper.findAllByClassName", }, - "name": "findHelpPanel", + "name": "findAllByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "HelpPanelWrapper | null", - "type": "union", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrapper of the first Hotspot that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Hotspot. -If no matching Hotspot is found, returns \`null\`.", + "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. +If no CSS selector is specified, returns all of the components that match the specified component type. +If no matching component is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findHotspot", + "name": "AbstractWrapper.findAllComponents", }, - "name": "findHotspot", + "name": "findAllComponents", "parameters": [ { + "description": "Component's wrapper class", + "flags": { + "isOptional": false, + }, + "name": "ComponentClass", + "typeName": "ComponentWrapperClass", + }, + { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "HotspotWrapper | null", - "type": "union", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "Wrapper", + }, + ], }, }, { - "description": "Returns the wrapper of the first Icon that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Icon. -If no matching Icon is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findIcon", + "name": "AbstractWrapper.findAny", }, - "name": "findIcon", + "name": "findAny", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "selectors", + "typeName": "Array", }, ], "returnType": { - "name": "IconWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { - "description": "Returns the wrapper of the first Input that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Input. -If no matching Input is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findInput", + "name": "AbstractWrapper.findByClassName", }, - "name": "findInput", + "name": "findByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "InputWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { - "description": "Returns the wrapper of the first KeyValuePairs that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first KeyValuePairs. -If no matching KeyValuePairs is found, returns \`null\`.", + "description": "Returns the component wrapper matching the specified selector. +If the specified selector doesn't match any element, it returns \`null\`. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { - "name": "ElementWrapper.findKeyValuePairs", + "name": "AbstractWrapper.findComponent", }, - "name": "findKeyValuePairs", + "name": "findComponent", "parameters": [ { + "description": "CSS selector", "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", + }, + { + "description": "Component's wrapper class", + "flags": { + "isOptional": false, + }, + "name": "ComponentClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "KeyValuePairsWrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "description": "Returns the wrapper of the first LineChart that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first LineChart. -If no matching LineChart is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findLineChart", + "name": "DropdownHostComponentWrapper.findDropdown", }, - "name": "findLineChart", + "name": "findDropdown", "parameters": [ { + "defaultValue": "{ expandToViewport: false }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "options", + "typeName": "{ expandToViewport: boolean; }", }, ], "returnType": { - "name": "LineChartWrapper | null", - "type": "union", + "isNullable": false, + "name": "DropdownContentWrapper", }, }, { - "description": "Returns the wrapper of the first Link that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Link. -If no matching Link is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findLink", - }, - "name": "findLink", + "name": "findErrorRecoveryButton", "parameters": [ { + "defaultValue": "{ expandToViewport: false }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "options", + "typeName": "{ expandToViewport: boolean; }", }, ], "returnType": { - "name": "LinkWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "description": "Returns the wrapper of the first List that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first List. -If no matching List is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findList", - }, - "name": "findList", + "description": "Returns the input that is used for filtering.", + "name": "findFilteringInput", "parameters": [ { + "defaultValue": "{ expandToViewport: false }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "options", + "typeName": "{ expandToViewport: boolean; }", }, ], "returnType": { - "name": "ListWrapper | null", - "type": "union", + "isNullable": true, + "name": "InputWrapper", + }, + }, + { + "name": "findInlineLabel", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "description": "Returns the wrapper of the first LiveRegion that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first LiveRegion. -If no matching LiveRegion is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findLiveRegion", + "name": "findPlaceholder", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, - "name": "findLiveRegion", + }, + { + "name": "findStatusIndicator", "parameters": [ { + "defaultValue": "{ expandToViewport: false }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "options", + "typeName": "{ expandToViewport: boolean; }", }, ], "returnType": { - "name": "LiveRegionWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findTrigger", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "description": "Returns the wrapper of the first MixedLineBarChart that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first MixedLineBarChart. -If no matching MixedLineBarChart is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findMixedLineBarChart", + "name": "AbstractWrapper.fireEvent", }, - "name": "findMixedLineBarChart", + "name": "fireEvent", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "event", + "typeName": "Event", }, ], "returnType": { - "name": "MixedLineBarChartWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first Modal that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Modal. -If no matching Modal is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findModal", + "name": "AbstractWrapper.focus", }, - "name": "findModal", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "focus", + "parameters": [], "returnType": { - "name": "ModalWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first Multiselect that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Multiselect. -If no matching Multiselect is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findMultiselect", + "name": "AbstractWrapper.getElement", }, - "name": "findMultiselect", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "getElement", + "parameters": [], "returnType": { - "name": "MultiselectWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementType", }, }, { - "name": "findOpenDropdown", + "name": "isDisabled", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "boolean", }, }, { - "description": "Returns the wrapper of the first Pagination that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Pagination. -If no matching Pagination is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findPagination", + "name": "AbstractWrapper.keydown", }, - "name": "findPagination", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "PaginationWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first PieChart that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first PieChart. -If no matching PieChart is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findPieChart", + "name": "AbstractWrapper.keydown", }, - "name": "findPieChart", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", }, ], "returnType": { - "name": "PieChartWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first Popover that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Popover. -If no matching Popover is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findPopover", + "name": "AbstractWrapper.keypress", }, - "name": "findPopover", + "name": "keypress", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "PopoverWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first ProgressBar that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first ProgressBar. -If no matching ProgressBar is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findProgressBar", + "name": "AbstractWrapper.keyup", }, - "name": "findProgressBar", + "name": "keyup", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "ProgressBarWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first PromptInput that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first PromptInput. -If no matching PromptInput is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findPromptInput", + "name": "AbstractWrapper.matches", }, - "name": "findPromptInput", + "name": "matches", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "PromptInputWrapper | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, { - "description": "Returns the wrapper of the first PropertyFilter that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first PropertyFilter. -If no matching PropertyFilter is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findPropertyFilter", + "name": "DropdownHostComponentWrapper.openDropdown", }, - "name": "findPropertyFilter", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "openDropdown", + "parameters": [], "returnType": { - "name": "PropertyFilterWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first RadioGroup that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first RadioGroup. -If no matching RadioGroup is found, returns \`null\`.", + "description": "Selects an option for the given index by triggering corresponding events. + +This utility does not open the dropdown of the given select. You will need to call \`openDropdown\` first in your test. +On selection the dropdown will close automatically. + +Example: +\`\`\` +wrapper.openDropdown(); +wrapper.selectOption(1); +\`\`\`", "inheritedFrom": { - "name": "ElementWrapper.findRadioGroup", + "name": "DropdownHostComponentWrapper.selectOption", }, - "name": "findRadioGroup", + "name": "selectOption", "parameters": [ { + "description": "1-based index of the option to select", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "index", + "typeName": "number", }, - ], - "returnType": { - "name": "RadioGroupWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the wrapper of the first S3ResourceSelector that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first S3ResourceSelector. -If no matching S3ResourceSelector is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findS3ResourceSelector", - }, - "name": "findS3ResourceSelector", - "parameters": [ { + "defaultValue": "{ expandToViewport: false }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "options", + "typeName": "{ expandToViewport: boolean; }", }, ], "returnType": { - "name": "S3ResourceSelectorWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first SegmentedControl that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first SegmentedControl. -If no matching SegmentedControl is found, returns \`null\`.", + "description": "Selects an option for the given value by triggering corresponding events. + +This utility does not open the dropdown of the given select. You will need to call \`openDropdown\` first in your test. +On selection the dropdown will close automatically. + +Example: +\`\`\` +wrapper.openDropdown(); +wrapper.selectOptionByValue('option_1'); +\`\`\`", "inheritedFrom": { - "name": "ElementWrapper.findSegmentedControl", + "name": "DropdownHostComponentWrapper.selectOptionByValue", }, - "name": "findSegmentedControl", + "name": "selectOptionByValue", "parameters": [ { + "description": "value of the option", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "value", + "typeName": "string", }, - ], - "returnType": { - "name": "SegmentedControlWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the wrapper of the first Select that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Select. -If no matching Select is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findSelect", - }, - "name": "findSelect", - "parameters": [ { + "defaultValue": "{ expandToViewport: false }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "options", + "typeName": "{ expandToViewport: boolean; }", }, ], "returnType": { - "name": "SelectWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, + ], + "name": "SelectWrapper", + }, + { + "methods": [ { - "description": "Returns the wrapper of the first SideNavigation that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first SideNavigation. -If no matching SideNavigation is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findSideNavigation", + "name": "AbstractWrapper.blur", }, - "name": "findSideNavigation", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "blur", + "parameters": [], "returnType": { - "name": "SideNavigationWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first Slider that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Slider. -If no matching Slider is found, returns \`null\`.", + "description": "Performs a click by triggering a mouse event. +Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", "inheritedFrom": { - "name": "ElementWrapper.findSlider", + "name": "AbstractWrapper.click", }, - "name": "findSlider", + "name": "click", "parameters": [ { "flags": { "isOptional": true, }, - "name": "selector", + "name": "params", + "typeName": "MouseEventInit", }, ], "returnType": { - "name": "SliderWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first SpaceBetween that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first SpaceBetween. -If no matching SpaceBetween is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findSpaceBetween", + "name": "AbstractWrapper.find", }, - "name": "findSpaceBetween", + "name": "find", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "SpaceBetweenWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the wrapper of the first Spinner that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Spinner. -If no matching Spinner is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findSpinner", - }, - "name": "findSpinner", - "parameters": [ - { - "flags": { - "isOptional": true, + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", }, - "name": "selector", - }, - ], - "returnType": { - "name": "SpinnerWrapper | null", - "type": "union", + ], }, }, { - "description": "Returns the wrapper of the first SplitPanel that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first SplitPanel. -If no matching SplitPanel is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findSplitPanel", - }, - "name": "findSplitPanel", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findActiveLink", + "parameters": [], "returnType": { - "name": "SplitPanelWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the wrapper of the first StatusIndicator that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first StatusIndicator. -If no matching StatusIndicator is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findStatusIndicator", - }, - "name": "findStatusIndicator", - "parameters": [ - { - "flags": { - "isOptional": true, + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLAnchorElement", }, - "name": "selector", - }, - ], - "returnType": { - "name": "StatusIndicatorWrapper | null", - "type": "union", + ], }, }, { - "description": "Returns the wrapper of the first Steps that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Steps. -If no matching Steps is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findSteps", + "name": "AbstractWrapper.findAll", }, - "name": "findSteps", + "name": "findAll", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "StepsWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the wrapper of the first Table that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Table. -If no matching Table is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findTable", - }, - "name": "findTable", - "parameters": [ - { - "flags": { - "isOptional": true, + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", }, - "name": "selector", - }, - ], - "returnType": { - "name": "TableWrapper | null", - "type": "union", + ], }, }, { - "description": "Returns the wrapper of the first Tabs that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Tabs. -If no matching Tabs is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findTabs", + "name": "AbstractWrapper.findAllByClassName", }, - "name": "findTabs", + "name": "findAllByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "TabsWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the wrapper of the first TagEditor that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first TagEditor. -If no matching TagEditor is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findTagEditor", - }, - "name": "findTagEditor", - "parameters": [ - { - "flags": { - "isOptional": true, + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", }, - "name": "selector", - }, - ], - "returnType": { - "name": "TagEditorWrapper | null", - "type": "union", + ], }, }, { - "description": "Returns the wrapper of the first TextContent that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first TextContent. -If no matching TextContent is found, returns \`null\`.", + "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. +If no CSS selector is specified, returns all of the components that match the specified component type. +If no matching component is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findTextContent", + "name": "AbstractWrapper.findAllComponents", }, - "name": "findTextContent", + "name": "findAllComponents", "parameters": [ { + "description": "Component's wrapper class", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "ComponentClass", + "typeName": "ComponentWrapperClass", }, - ], - "returnType": { - "name": "TextContentWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the wrapper of the first TextFilter that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first TextFilter. -If no matching TextFilter is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findTextFilter", - }, - "name": "findTextFilter", - "parameters": [ { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "TextFilterWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the wrapper of the first Textarea that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Textarea. -If no matching Textarea is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findTextarea", - }, - "name": "findTextarea", - "parameters": [ - { - "flags": { - "isOptional": true, + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "Wrapper", }, - "name": "selector", - }, - ], - "returnType": { - "name": "TextareaWrapper | null", - "type": "union", + ], }, }, { - "description": "Returns the wrapper of the first Tiles that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Tiles. -If no matching Tiles is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findTiles", + "name": "AbstractWrapper.findAny", }, - "name": "findTiles", + "name": "findAny", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "selectors", + "typeName": "Array", }, ], "returnType": { - "name": "TilesWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { - "description": "Returns the wrapper of the first TimeInput that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first TimeInput. -If no matching TimeInput is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findTimeInput", + "name": "AbstractWrapper.findByClassName", }, - "name": "findTimeInput", + "name": "findByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "TimeInputWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { - "description": "Returns the wrapper of the first Toggle that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Toggle. -If no matching Toggle is found, returns \`null\`.", + "description": "Returns the component wrapper matching the specified selector. +If the specified selector doesn't match any element, it returns \`null\`. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { - "name": "ElementWrapper.findToggle", + "name": "AbstractWrapper.findComponent", }, - "name": "findToggle", + "name": "findComponent", "parameters": [ { + "description": "CSS selector", "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, - ], - "returnType": { - "name": "ToggleWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the wrapper of the first ToggleButton that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first ToggleButton. -If no matching ToggleButton is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findToggleButton", - }, - "name": "findToggleButton", - "parameters": [ { + "description": "Component's wrapper class", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "ComponentClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "ToggleButtonWrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "description": "Returns the wrapper of the first TokenGroup that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first TokenGroup. -If no matching TokenGroup is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findTokenGroup", - }, - "name": "findTokenGroup", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findHeader", + "parameters": [], "returnType": { - "name": "TokenGroupWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLAnchorElement", + }, + ], }, }, { - "description": "Returns the wrapper of the first TopNavigation that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first TopNavigation. -If no matching TopNavigation is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findTopNavigation", - }, - "name": "findTopNavigation", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findHeaderLink", + "parameters": [], "returnType": { - "name": "TopNavigationWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLAnchorElement", + }, + ], }, }, { - "description": "Returns the wrapper of the first TreeView that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first TreeView. -If no matching TreeView is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findTreeView", - }, - "name": "findTreeView", + "name": "findItemByIndex", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "index", + "typeName": "number", }, ], "returnType": { - "name": "TreeViewWrapper | null", - "type": "union", + "isNullable": true, + "name": "SideNavigationItemWrapper", }, }, { - "description": "Returns the wrapper of the first TutorialPanel that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first TutorialPanel. -If no matching TutorialPanel is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findTutorialPanel", - }, - "name": "findTutorialPanel", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findItemsControl", + "parameters": [], "returnType": { - "name": "TutorialPanelWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "description": "Returns the wrapper of the first Wizard that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Wizard. -If no matching Wizard is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findWizard", - }, - "name": "findWizard", + "name": "findLinkByHref", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "href", + "typeName": "string", }, ], "returnType": { - "name": "WizardWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLAnchorElement", + }, + ], }, }, { @@ -59460,8 +63488,8 @@ If no matching Wizard is found, returns \`null\`.", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -59471,8 +63499,8 @@ If no matching Wizard is found, returns \`null\`.", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -59482,8 +63510,8 @@ If no matching Wizard is found, returns \`null\`.", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -59501,8 +63529,27 @@ If no matching Wizard is found, returns \`null\`.", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -59520,8 +63567,8 @@ If no matching Wizard is found, returns \`null\`.", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -59539,8 +63586,8 @@ If no matching Wizard is found, returns \`null\`.", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -59558,12 +63605,12 @@ If no matching Wizard is found, returns \`null\`.", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "DropdownWrapper", + "name": "SideNavigationWrapper", }, { "methods": [ @@ -59574,8 +63621,8 @@ If no matching Wizard is found, returns \`null\`.", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -59595,8 +63642,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -59614,8 +63661,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -59633,8 +63685,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -59652,8 +63709,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -59666,28 +63728,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -59703,12 +63765,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -59726,23 +63793,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -59750,50 +63821,57 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "name": "findDisabledOptions", + "name": "findDivider", "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "OptionWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "name": "findFooterRegion", + "name": "findExpandableLinkGroup", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ExpandableSectionWrapper", + }, + }, + { + "name": "findInfo", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLAnchorElement", + }, + ], }, }, { - "description": "Returns an option group from the dropdown.", - "name": "findGroup", + "name": "findItemByIndex", "parameters": [ { - "description": " -1-based index of the group to select. -", "flags": { "isOptional": false, }, @@ -59802,171 +63880,79 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "SideNavigationItemWrapper", }, }, { - "description": "Returns all option groups in the dropdown.", - "name": "findGroups", + "name": "findItems", "parameters": [], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "ElementWrapper", - "type": "reference", + "name": "SideNavigationItemWrapper", }, ], }, }, { - "name": "findHighlightedAriaLiveRegion", + "name": "findLink", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLAnchorElement", + }, + ], }, }, { - "description": "Returns highlighted text fragments from all of the options. -Options get highlighted when they match the value of the input field.", - "name": "findHighlightedMatches", - "parameters": [], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "name": "findHighlightedOption", + "name": "findSection", "parameters": [], "returnType": { - "name": "OptionWrapper | null", - "type": "union", + "isNullable": true, + "name": "ExpandableSectionWrapper", }, }, { - "name": "findOpenDropdown", + "name": "findSectionGroup", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns an option from the dropdown.", - "name": "findOption", - "parameters": [ - { - "description": " -1-based index of the option to select. -", - "flags": { - "isOptional": false, - }, - "name": "optionIndex", - "typeName": "number", - }, - ], - "returnType": { - "name": "OptionWrapper | null", - "type": "union", - }, - }, - { - "name": "findOptionByValue", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "value", - "typeName": "string", - }, - ], - "returnType": { - "name": "OptionWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns an option from the dropdown.", - "name": "findOptionInGroup", - "parameters": [ - { - "description": " -1-based index of the group to select an option in.", - "flags": { - "isOptional": false, - }, - "name": "groupIndex", - "typeName": "number", - }, - { - "description": " -1-based index of the option to select. -", - "flags": { - "isOptional": false, + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", }, - "name": "optionIndex", - "typeName": "number", - }, - ], - "returnType": { - "name": "OptionWrapper | null", - "type": "union", + ], }, }, { - "name": "findOptions", + "name": "findSectionGroupTitle", "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "OptionWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "description": "Use this element to scroll through the list of options", - "name": "findOptionsContainer", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findSelectAll", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findSelectedOptions", + "name": "findSectionTitle", "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "OptionWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, @@ -59986,8 +63972,8 @@ Options get highlighted when they match the value of the input field.", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -59997,8 +63983,8 @@ Options get highlighted when they match the value of the input field.", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -60008,8 +63994,8 @@ Options get highlighted when they match the value of the input field.", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -60027,8 +64013,27 @@ Options get highlighted when they match the value of the input field.", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -60046,8 +64051,8 @@ Options get highlighted when they match the value of the input field.", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -60065,8 +64070,8 @@ Options get highlighted when they match the value of the input field.", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -60084,24 +64089,24 @@ Options get highlighted when they match the value of the input field.", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "DropdownContentWrapper", + "name": "SideNavigationItemWrapper", }, { "methods": [ { "inheritedFrom": { - "name": "AbstractWrapper.blur", + "name": "BaseInputWrapper.blur", }, "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -60121,58 +64126,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Selects all options by triggering corresponding events on the element that selects or deselects all options in Multiselect when using the \`enableSelectAll\` flag. -This utility does not open the dropdown of the given select. You will need to call \`openDropdown\` first in your test. - -Example: -\`\`\` -wrapper.openDropdown(); -wrapper.clickSelectAll(); -\`\`\` -", - "name": "clickSelectAll", - "parameters": [ - { - "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "", - "name": "closeDropdown", - "parameters": [ - { - "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", }, }, { @@ -60190,8 +64145,13 @@ wrapper.clickSelectAll(); }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -60209,8 +64169,13 @@ wrapper.clickSelectAll(); }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -60228,8 +64193,13 @@ wrapper.clickSelectAll(); }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -60242,28 +64212,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -60279,12 +64249,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -60302,23 +64277,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -60326,47 +64305,30 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "description": "", - "name": "findDropdown", - "parameters": [ - { - "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", - "flags": { - "isOptional": false, - }, - "name": "options", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "DropdownContentWrapper", - "type": "reference", + "isNullable": true, + "name": "Wrapper", }, }, { - "name": "findTrigger", + "name": "findNativeInput", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", + "typeArguments": [ + { + "name": "HTMLInputElement", + }, + ], }, }, { @@ -60384,19 +64346,19 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.focus", + "name": "BaseInputWrapper.focus", }, "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -60406,8 +64368,33 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", + }, + }, + { + "description": "Gets the value of the component. + +Returns the current value of the input.", + "inheritedFrom": { + "name": "BaseInputWrapper.getInputValue", + }, + "name": "getInputValue", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "string", + }, + }, + { + "inheritedFrom": { + "name": "BaseInputWrapper.isDisabled", + }, + "name": "isDisabled", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "boolean", }, }, { @@ -60425,34 +64412,34 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keypress", + "name": "AbstractWrapper.keydown", }, - "name": "keypress", + "name": "keydown", "parameters": [ { "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keyup", + "name": "AbstractWrapper.keypress", }, - "name": "keyup", + "name": "keypress", "parameters": [ { "flags": { @@ -60463,117 +64450,71 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.matches", + "name": "AbstractWrapper.keyup", }, - "name": "matches", + "name": "keyup", "parameters": [ { "flags": { "isOptional": false, }, - "name": "selector", - "typeName": "string", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "this | null", - "type": "union", - }, - }, - { - "name": "openDropdown", - "parameters": [], - "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { - "description": "Selects an option for the given index by triggering corresponding events. -This utility does not open the dropdown of the given select. You will need to call \`openDropdown\` first in your test. -On selection the dropdown will close automatically. - -Example: -\`\`\` -wrapper.openDropdown(); -wrapper.selectOption(1); -\`\`\` -", - "name": "selectOption", + "inheritedFrom": { + "name": "AbstractWrapper.matches", + }, + "name": "matches", "parameters": [ { - "description": " -1-based index of the option to select", "flags": { "isOptional": false, }, - "name": "index", - "typeName": "number", - }, - { - "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", - "flags": { - "isOptional": false, - }, - "name": "options", + "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": true, + "name": "this", }, }, { - "description": "Selects an option for the given value by triggering corresponding events. -This utility does not open the dropdown of the given select. You will need to call \`openDropdown\` first in your test. -On selection the dropdown will close automatically. - -Example: -\`\`\` -wrapper.openDropdown(); -wrapper.selectOptionByValue('option_1'); -\`\`\` -", - "name": "selectOptionByValue", + "description": "Sets the value of the component and calls the \`onChange\` handler", + "inheritedFrom": { + "name": "BaseInputWrapper.setInputValue", + }, + "name": "setInputValue", "parameters": [ { - "description": " -value of the option", + "description": "The value the input is set to.", "flags": { "isOptional": false, }, "name": "value", "typeName": "string", }, - { - "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, ], - "name": "DropdownHostComponentWrapper", + "name": "SliderWrapper", }, { "methods": [ @@ -60584,8 +64525,8 @@ value of the option", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -60605,8 +64546,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -60624,8 +64565,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -60643,8 +64589,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -60662,8 +64613,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -60676,28 +64632,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -60713,12 +64669,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -60736,23 +64697,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -60760,269 +64725,380 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "DropdownContentWrapper.findDisabledOptions", - }, - "name": "findDisabledOptions", - "parameters": [], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "OptionWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "DropdownContentWrapper.findFooterRegion", - }, - "name": "findFooterRegion", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "description": "Returns an option group from the dropdown.", "inheritedFrom": { - "name": "DropdownContentWrapper.findGroup", + "name": "AbstractWrapper.fireEvent", }, - "name": "findGroup", + "name": "fireEvent", "parameters": [ { - "description": " -1-based index of the group to select. -", "flags": { "isOptional": false, }, - "name": "index", - "typeName": "number", + "name": "event", + "typeName": "Event", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns all option groups in the dropdown.", - "inheritedFrom": { - "name": "DropdownContentWrapper.findGroups", - }, - "name": "findGroups", - "parameters": [], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "DropdownContentWrapper.findHighlightedAriaLiveRegion", - }, - "name": "findHighlightedAriaLiveRegion", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns highlighted text fragments from all of the options. -Options get highlighted when they match the value of the input field.", "inheritedFrom": { - "name": "DropdownContentWrapper.findHighlightedMatches", + "name": "AbstractWrapper.focus", }, - "name": "findHighlightedMatches", + "name": "focus", "parameters": [], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { "inheritedFrom": { - "name": "DropdownContentWrapper.findHighlightedOption", - }, - "name": "findHighlightedOption", - "parameters": [], - "returnType": { - "name": "OptionWrapper | null", - "type": "union", + "name": "AbstractWrapper.getElement", }, - }, - { - "name": "findOpenDropdown", + "name": "getElement", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementType", }, }, { - "description": "Returns an option from the dropdown.", "inheritedFrom": { - "name": "DropdownContentWrapper.findOption", + "name": "AbstractWrapper.keydown", }, - "name": "findOption", + "name": "keydown", "parameters": [ { - "description": " -1-based index of the option to select. -", "flags": { "isOptional": false, }, - "name": "optionIndex", - "typeName": "number", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "OptionWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { "inheritedFrom": { - "name": "DropdownContentWrapper.findOptionByValue", + "name": "AbstractWrapper.keydown", }, - "name": "findOptionByValue", + "name": "keydown", "parameters": [ { "flags": { "isOptional": false, }, - "name": "value", - "typeName": "string", + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", }, ], "returnType": { - "name": "OptionWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an option from the dropdown.", "inheritedFrom": { - "name": "DropdownContentWrapper.findOptionInGroup", + "name": "AbstractWrapper.keypress", }, - "name": "findOptionInGroup", + "name": "keypress", "parameters": [ { - "description": " -1-based index of the group to select an option in.", "flags": { "isOptional": false, }, - "name": "groupIndex", - "typeName": "number", + "name": "keyCode", + "typeName": "KeyCode", }, + ], + "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keyup", + }, + "name": "keyup", + "parameters": [ { - "description": " -1-based index of the option to select. -", "flags": { "isOptional": false, }, - "name": "optionIndex", - "typeName": "number", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "OptionWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { "inheritedFrom": { - "name": "DropdownContentWrapper.findOptions", + "name": "AbstractWrapper.matches", }, - "name": "findOptions", + "name": "matches", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "selector", + "typeName": "string", + }, + ], + "returnType": { + "isNullable": true, + "name": "this", + }, + }, + ], + "name": "SpaceBetweenWrapper", + }, + { + "methods": [ + { + "inheritedFrom": { + "name": "AbstractWrapper.blur", + }, + "name": "blur", "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": false, + "name": "void", + }, + }, + { + "description": "Performs a click by triggering a mouse event. +Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", + "inheritedFrom": { + "name": "AbstractWrapper.click", + }, + "name": "click", + "parameters": [ + { + "flags": { + "isOptional": true, + }, + "name": "params", + "typeName": "MouseEventInit", + }, + ], + "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.find", + }, + "name": "find", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "selector", + "typeName": "string", + }, + ], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "OptionWrapper", - "type": "reference", + "name": "NewElementType", }, ], }, }, { - "description": "Use this element to scroll through the list of options", "inheritedFrom": { - "name": "DropdownContentWrapper.findOptionsContainer", + "name": "AbstractWrapper.findAll", }, - "name": "findOptionsContainer", - "parameters": [], + "name": "findAll", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "selector", + "typeName": "string", + }, + ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { "inheritedFrom": { - "name": "DropdownContentWrapper.findSelectAll", + "name": "AbstractWrapper.findAllByClassName", }, - "name": "findSelectAll", - "parameters": [], + "name": "findAllByClassName", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "className", + "typeName": "string", + }, + ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { + "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. +If no CSS selector is specified, returns all of the components that match the specified component type. +If no matching component is found, returns an empty array.", "inheritedFrom": { - "name": "DropdownContentWrapper.findSelectedOptions", + "name": "AbstractWrapper.findAllComponents", }, - "name": "findSelectedOptions", - "parameters": [], + "name": "findAllComponents", + "parameters": [ + { + "description": "Component's wrapper class", + "flags": { + "isOptional": false, + }, + "name": "ComponentClass", + "typeName": "ComponentWrapperClass", + }, + { + "description": "CSS selector", + "flags": { + "isOptional": true, + }, + "name": "selector", + "typeName": "string", + }, + ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "OptionWrapper", - "type": "reference", + "name": "Wrapper", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.findAny", + }, + "name": "findAny", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "selectors", + "typeName": "Array", + }, + ], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.findByClassName", + }, + "name": "findByClassName", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "className", + "typeName": "string", + }, + ], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", }, ], }, }, + { + "description": "Returns the component wrapper matching the specified selector. +If the specified selector doesn't match any element, it returns \`null\`. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", + "inheritedFrom": { + "name": "AbstractWrapper.findComponent", + }, + "name": "findComponent", + "parameters": [ + { + "description": "CSS selector", + "flags": { + "isOptional": false, + }, + "name": "selector", + "typeName": "string", + }, + { + "description": "Component's wrapper class", + "flags": { + "isOptional": false, + }, + "name": "ComponentClass", + "typeName": "WrapperClass", + }, + ], + "returnType": { + "isNullable": true, + "name": "Wrapper", + }, + }, { "inheritedFrom": { "name": "AbstractWrapper.fireEvent", @@ -61038,8 +65114,8 @@ Options get highlighted when they match the value of the input field.", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -61049,8 +65125,8 @@ Options get highlighted when they match the value of the input field.", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -61060,8 +65136,8 @@ Options get highlighted when they match the value of the input field.", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -61079,8 +65155,27 @@ Options get highlighted when they match the value of the input field.", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -61098,8 +65193,8 @@ Options get highlighted when they match the value of the input field.", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -61117,8 +65212,8 @@ Options get highlighted when they match the value of the input field.", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -61136,12 +65231,12 @@ Options get highlighted when they match the value of the input field.", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "PortalDropdownContentWrapper", + "name": "SpinnerWrapper", }, { "methods": [ @@ -61152,8 +65247,8 @@ Options get highlighted when they match the value of the input field.", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -61173,8 +65268,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -61192,8 +65287,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -61211,8 +65311,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -61230,8 +65335,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -61244,28 +65354,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -61281,12 +65391,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -61304,23 +65419,35 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], + }, + }, + { + "name": "findCloseButton", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ButtonWrapper", }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -61328,58 +65455,131 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "name": "findDescription", + "name": "findHeader", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "name": "findDisabledReason", + "name": "findHeaderActions", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "name": "findLabel", + "name": "findHeaderBefore", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findHeaderDescription", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findHeaderInfo", "parameters": [], "returnType": { + "isNullable": true, "name": "ElementWrapper", - "type": "reference", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findOpenButton", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ButtonWrapper", + }, + }, + { + "description": "Returns the same panel if it's currently open in bottom position. If not, it returns null. +Use this method to assert the panel position.", + "name": "findOpenPanelBottom", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "SplitPanelWrapper", + }, + }, + { + "description": "Returns the same panel if it's currently open in side position. If not, it returns null. +Use this method to assert the panel position.", + "name": "findOpenPanelSide", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "SplitPanelWrapper", }, }, { - "name": "findLabelTag", + "name": "findPreferencesButton", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ButtonWrapper", }, }, { - "name": "findTags", + "name": "findSlider", "parameters": [], "returnType": { - "name": "Array | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { @@ -61397,8 +65597,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -61408,8 +65608,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -61419,8 +65619,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -61438,8 +65638,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -61457,8 +65676,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -61476,8 +65695,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -61495,12 +65714,12 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "OptionWrapper", + "name": "SplitPanelWrapper", }, { "methods": [ @@ -61511,8 +65730,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -61532,8 +65751,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -61551,29 +65770,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the wrapper of the first Alert that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Alert. -If no matching Alert is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findAlert", - }, - "name": "findAlert", - "parameters": [ - { - "flags": { - "isOptional": true, + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", }, - "name": "selector", - }, - ], - "returnType": { - "name": "AlertWrapper | null", - "type": "union", + ], }, }, { @@ -61591,2750 +65794,2170 @@ If no matching Alert is found, returns \`null\`.", }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns an array of Alert wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Alerts inside the current wrapper. -If no matching Alert is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllAlerts", + "name": "AbstractWrapper.findAllByClassName", }, - "name": "findAllAlerts", + "name": "findAllByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "AlertWrapper", - "type": "reference", + "name": "ElementWrapper", }, ], }, }, { - "description": "Returns an array of AnchorNavigation wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the AnchorNavigations inside the current wrapper. -If no matching AnchorNavigation is found, returns an empty array.", + "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. +If no CSS selector is specified, returns all of the components that match the specified component type. +If no matching component is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllAnchorNavigations", + "name": "AbstractWrapper.findAllComponents", }, - "name": "findAllAnchorNavigations", + "name": "findAllComponents", "parameters": [ { + "description": "Component's wrapper class", + "flags": { + "isOptional": false, + }, + "name": "ComponentClass", + "typeName": "ComponentWrapperClass", + }, + { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "AnchorNavigationWrapper", - "type": "reference", + "name": "Wrapper", }, ], }, }, { - "description": "Returns an array of Annotation wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Annotations inside the current wrapper. -If no matching Annotation is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllAnnotations", + "name": "AbstractWrapper.findAny", }, - "name": "findAllAnnotations", + "name": "findAny", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "selectors", + "typeName": "Array", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "AnnotationWrapper", - "type": "reference", + "name": "NewElementType", }, ], }, }, { - "description": "Returns an array of AppLayoutToolbar wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the AppLayoutToolbars inside the current wrapper. -If no matching AppLayoutToolbar is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllAppLayoutToolbars", + "name": "AbstractWrapper.findByClassName", }, - "name": "findAllAppLayoutToolbars", + "name": "findByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "AppLayoutToolbarWrapper", - "type": "reference", + "name": "NewElementType", }, ], }, }, { - "description": "Returns an array of AppLayout wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the AppLayouts inside the current wrapper. -If no matching AppLayout is found, returns an empty array.", + "description": "Returns the component wrapper matching the specified selector. +If the specified selector doesn't match any element, it returns \`null\`. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { - "name": "ElementWrapper.findAllAppLayouts", + "name": "AbstractWrapper.findComponent", }, - "name": "findAllAppLayouts", + "name": "findComponent", "parameters": [ { + "description": "CSS selector", "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, - ], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "AppLayoutWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns an array of AreaChart wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the AreaCharts inside the current wrapper. -If no matching AreaChart is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllAreaCharts", - }, - "name": "findAllAreaCharts", - "parameters": [ { + "description": "Component's wrapper class", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "ComponentClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "AreaChartWrapper", - "type": "reference", - }, - ], + "isNullable": true, + "name": "Wrapper", }, }, { - "description": "Returns an array of AttributeEditor wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the AttributeEditors inside the current wrapper. -If no matching AttributeEditor is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllAttributeEditors", + "name": "AbstractWrapper.fireEvent", }, - "name": "findAllAttributeEditors", + "name": "fireEvent", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "event", + "typeName": "Event", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "AttributeEditorWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of Autosuggest wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Autosuggests inside the current wrapper. -If no matching Autosuggest is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllAutosuggests", + "name": "AbstractWrapper.focus", }, - "name": "findAllAutosuggests", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "focus", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "AutosuggestWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of Badge wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Badges inside the current wrapper. -If no matching Badge is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllBadges", + "name": "AbstractWrapper.getElement", }, - "name": "findAllBadges", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "getElement", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "BadgeWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "ElementType", }, }, { - "description": "Returns an array of BarChart wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the BarCharts inside the current wrapper. -If no matching BarChart is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllBarCharts", + "name": "AbstractWrapper.keydown", }, - "name": "findAllBarCharts", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "BarChartWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of Box wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Boxes inside the current wrapper. -If no matching Box is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllBoxes", + "name": "AbstractWrapper.keydown", }, - "name": "findAllBoxes", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "BoxWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of BreadcrumbGroup wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the BreadcrumbGroups inside the current wrapper. -If no matching BreadcrumbGroup is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllBreadcrumbGroups", + "name": "AbstractWrapper.keypress", }, - "name": "findAllBreadcrumbGroups", + "name": "keypress", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "BreadcrumbGroupWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of ButtonDropdown wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the ButtonDropdowns inside the current wrapper. -If no matching ButtonDropdown is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllButtonDropdowns", + "name": "AbstractWrapper.keyup", }, - "name": "findAllButtonDropdowns", + "name": "keyup", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ButtonDropdownWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of ButtonGroup wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the ButtonGroups inside the current wrapper. -If no matching ButtonGroup is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllButtonGroups", + "name": "AbstractWrapper.matches", }, - "name": "findAllButtonGroups", + "name": "matches", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ButtonGroupWrapper", - "type": "reference", - }, - ], + "isNullable": true, + "name": "this", }, }, + ], + "name": "StatusIndicatorWrapper", + }, + { + "methods": [ { - "description": "Returns an array of Button wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Buttons inside the current wrapper. -If no matching Button is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllButtons", + "name": "AbstractWrapper.blur", }, - "name": "findAllButtons", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "blur", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ButtonWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { + "description": "Performs a click by triggering a mouse event. +Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", + "name": "AbstractWrapper.click", }, - "name": "findAllByClassName", + "name": "click", "parameters": [ { "flags": { - "isOptional": false, + "isOptional": true, }, - "name": "className", - "typeName": "string", + "name": "params", + "typeName": "MouseEventInit", }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of Calendar wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Calendars inside the current wrapper. -If no matching Calendar is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllCalendars", + "name": "AbstractWrapper.find", }, - "name": "findAllCalendars", + "name": "find", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "CalendarWrapper", - "type": "reference", + "name": "NewElementType", }, ], }, }, { - "description": "Returns an array of Cards wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Cards inside the current wrapper. -If no matching Cards is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllCards", + "name": "AbstractWrapper.findAll", }, - "name": "findAllCards", + "name": "findAll", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "CardsWrapper", - "type": "reference", + "name": "ElementWrapper", }, ], }, }, { - "description": "Returns an array of Checkbox wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Checkboxes inside the current wrapper. -If no matching Checkbox is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllCheckboxes", + "name": "AbstractWrapper.findAllByClassName", }, - "name": "findAllCheckboxes", + "name": "findAllByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "CheckboxWrapper", - "type": "reference", + "name": "ElementWrapper", }, ], }, }, { - "description": "Returns an array of CodeEditor wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the CodeEditors inside the current wrapper. -If no matching CodeEditor is found, returns an empty array.", + "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. +If no CSS selector is specified, returns all of the components that match the specified component type. +If no matching component is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllCodeEditors", + "name": "AbstractWrapper.findAllComponents", }, - "name": "findAllCodeEditors", + "name": "findAllComponents", "parameters": [ { + "description": "Component's wrapper class", + "flags": { + "isOptional": false, + }, + "name": "ComponentClass", + "typeName": "ComponentWrapperClass", + }, + { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "CodeEditorWrapper", - "type": "reference", + "name": "Wrapper", }, ], }, }, { - "description": "Returns an array of CollectionPreferences wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the CollectionPreferences inside the current wrapper. -If no matching CollectionPreferences is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllCollectionPreferences", + "name": "AbstractWrapper.findAny", }, - "name": "findAllCollectionPreferences", + "name": "findAny", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "selectors", + "typeName": "Array", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "CollectionPreferencesWrapper", - "type": "reference", + "name": "NewElementType", }, ], }, }, { - "description": "Returns an array of ColumnLayout wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the ColumnLayouts inside the current wrapper. -If no matching ColumnLayout is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllColumnLayouts", + "name": "AbstractWrapper.findByClassName", }, - "name": "findAllColumnLayouts", + "name": "findByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "ColumnLayoutWrapper", - "type": "reference", + "name": "NewElementType", }, ], }, }, { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", + "description": "Returns the component wrapper matching the specified selector. +If the specified selector doesn't match any element, it returns \`null\`. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", + "name": "AbstractWrapper.findComponent", }, - "name": "findAllComponents", + "name": "findComponent", "parameters": [ { - "description": " -Component's wrapper class", + "description": "CSS selector", "flags": { "isOptional": false, }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "name": "selector", + "typeName": "string", }, { + "description": "Component's wrapper class", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "ComponentClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": true, + "name": "Wrapper", + }, + }, + { + "description": "Finds all step items", + "name": "findItems", + "parameters": [], + "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "Wrapper", - "type": "typeParameter", + "name": "StepWrapper", }, ], }, }, { - "description": "Returns an array of Container wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Containers inside the current wrapper. -If no matching Container is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllContainers", + "name": "AbstractWrapper.fireEvent", }, - "name": "findAllContainers", + "name": "fireEvent", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "event", + "typeName": "Event", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ContainerWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of ContentLayout wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the ContentLayouts inside the current wrapper. -If no matching ContentLayout is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllContentLayouts", + "name": "AbstractWrapper.focus", }, - "name": "findAllContentLayouts", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "focus", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ContentLayoutWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.getElement", + }, + "name": "getElement", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementType", }, }, { - "description": "Returns an array of CopyToClipboard wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the CopyToClipboards inside the current wrapper. -If no matching CopyToClipboard is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllCopyToClipboards", + "name": "AbstractWrapper.keydown", }, - "name": "findAllCopyToClipboards", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "CopyToClipboardWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of DateInput wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the DateInputs inside the current wrapper. -If no matching DateInput is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllDateInputs", + "name": "AbstractWrapper.keydown", }, - "name": "findAllDateInputs", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "DateInputWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of DatePicker wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the DatePickers inside the current wrapper. -If no matching DatePicker is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllDatePickers", + "name": "AbstractWrapper.keypress", }, - "name": "findAllDatePickers", + "name": "keypress", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "DatePickerWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of DateRangePicker wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the DateRangePickers inside the current wrapper. -If no matching DateRangePicker is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllDateRangePickers", + "name": "AbstractWrapper.keyup", }, - "name": "findAllDateRangePickers", + "name": "keyup", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "DateRangePickerWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of Drawer wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Drawers inside the current wrapper. -If no matching Drawer is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllDrawers", + "name": "AbstractWrapper.matches", }, - "name": "findAllDrawers", + "name": "matches", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "DrawerWrapper", - "type": "reference", - }, - ], + "isNullable": true, + "name": "this", + }, + }, + ], + "name": "StepsWrapper", + }, + { + "methods": [ + { + "inheritedFrom": { + "name": "AbstractWrapper.blur", + }, + "name": "blur", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of ExpandableSection wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the ExpandableSections inside the current wrapper. -If no matching ExpandableSection is found, returns an empty array.", + "description": "Performs a click by triggering a mouse event. +Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", "inheritedFrom": { - "name": "ElementWrapper.findAllExpandableSections", + "name": "AbstractWrapper.click", }, - "name": "findAllExpandableSections", + "name": "click", "parameters": [ { "flags": { "isOptional": true, }, - "name": "selector", + "name": "params", + "typeName": "MouseEventInit", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ExpandableSectionWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of FileDropzone wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the FileDropzones inside the current wrapper. -If no matching FileDropzone is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllFileDropzones", + "name": "AbstractWrapper.find", }, - "name": "findAllFileDropzones", + "name": "find", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "FileDropzoneWrapper", - "type": "reference", + "name": "NewElementType", }, ], }, }, { - "description": "Returns an array of FileInput wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the FileInputs inside the current wrapper. -If no matching FileInput is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllFileInputs", + "name": "AbstractWrapper.findAll", }, - "name": "findAllFileInputs", + "name": "findAll", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "FileInputWrapper", - "type": "reference", + "name": "ElementWrapper", }, ], }, }, { - "description": "Returns an array of FileTokenGroup wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the FileTokenGroups inside the current wrapper. -If no matching FileTokenGroup is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllFileTokenGroups", + "name": "AbstractWrapper.findAllByClassName", }, - "name": "findAllFileTokenGroups", + "name": "findAllByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "FileTokenGroupWrapper", - "type": "reference", + "name": "ElementWrapper", }, ], }, }, { - "description": "Returns an array of FileUpload wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the FileUploads inside the current wrapper. -If no matching FileUpload is found, returns an empty array.", + "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. +If no CSS selector is specified, returns all of the components that match the specified component type. +If no matching component is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllFileUploads", + "name": "AbstractWrapper.findAllComponents", }, - "name": "findAllFileUploads", + "name": "findAllComponents", "parameters": [ { + "description": "Component's wrapper class", + "flags": { + "isOptional": false, + }, + "name": "ComponentClass", + "typeName": "ComponentWrapperClass", + }, + { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "FileUploadWrapper", - "type": "reference", + "name": "Wrapper", }, ], }, }, { - "description": "Returns an array of Flashbar wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Flashbars inside the current wrapper. -If no matching Flashbar is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllFlashbars", + "name": "AbstractWrapper.findAny", }, - "name": "findAllFlashbars", + "name": "findAny", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "selectors", + "typeName": "Array", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "FlashbarWrapper", - "type": "reference", + "name": "NewElementType", }, ], }, }, { - "description": "Returns an array of FormField wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the FormFields inside the current wrapper. -If no matching FormField is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllFormFields", + "name": "AbstractWrapper.findByClassName", }, - "name": "findAllFormFields", + "name": "findByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "FormFieldWrapper", - "type": "reference", + "name": "NewElementType", }, ], }, }, { - "description": "Returns an array of Form wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Forms inside the current wrapper. -If no matching Form is found, returns an empty array.", + "description": "Returns the component wrapper matching the specified selector. +If the specified selector doesn't match any element, it returns \`null\`. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { - "name": "ElementWrapper.findAllForms", + "name": "AbstractWrapper.findComponent", }, - "name": "findAllForms", + "name": "findComponent", "parameters": [ { + "description": "CSS selector", "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, - ], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "FormWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns an array of Grid wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Grids inside the current wrapper. -If no matching Grid is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllGrids", - }, - "name": "findAllGrids", - "parameters": [ { + "description": "Component's wrapper class", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "ComponentClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "Wrapper", + }, + }, + { + "description": "Finds the details of a step", + "name": "findDetails", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "GridWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "description": "Returns an array of Header wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Headers inside the current wrapper. -If no matching Header is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllHeaders", - }, - "name": "findAllHeaders", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "description": "Finds the header of a step", + "name": "findHeader", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "HeaderWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "description": "Returns an array of HelpPanel wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the HelpPanels inside the current wrapper. -If no matching HelpPanel is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllHelpPanels", + "name": "AbstractWrapper.fireEvent", }, - "name": "findAllHelpPanels", + "name": "fireEvent", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "event", + "typeName": "Event", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "HelpPanelWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of Hotspot wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Hotspots inside the current wrapper. -If no matching Hotspot is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllHotspots", + "name": "AbstractWrapper.focus", }, - "name": "findAllHotspots", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "focus", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "HotspotWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of Icon wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Icons inside the current wrapper. -If no matching Icon is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllIcons", + "name": "AbstractWrapper.getElement", }, - "name": "findAllIcons", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "getElement", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "IconWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "ElementType", }, }, { - "description": "Returns an array of Input wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Inputs inside the current wrapper. -If no matching Input is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllInputs", + "name": "AbstractWrapper.keydown", }, - "name": "findAllInputs", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "InputWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of KeyValuePairs wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the KeyValuePairs inside the current wrapper. -If no matching KeyValuePairs is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllKeyValuePairs", + "name": "AbstractWrapper.keydown", }, - "name": "findAllKeyValuePairs", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "KeyValuePairsWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of LineChart wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the LineCharts inside the current wrapper. -If no matching LineChart is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllLineCharts", + "name": "AbstractWrapper.keypress", }, - "name": "findAllLineCharts", + "name": "keypress", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "LineChartWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of Link wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Links inside the current wrapper. -If no matching Link is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllLinks", + "name": "AbstractWrapper.keyup", }, - "name": "findAllLinks", + "name": "keyup", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "LinkWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of List wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Lists inside the current wrapper. -If no matching List is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllLists", + "name": "AbstractWrapper.matches", }, - "name": "findAllLists", + "name": "matches", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ListWrapper", - "type": "reference", - }, - ], + "isNullable": true, + "name": "this", }, }, + ], + "name": "StepWrapper", + }, + { + "methods": [ { - "description": "Returns an array of LiveRegion wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the LiveRegions inside the current wrapper. -If no matching LiveRegion is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllLiveRegions", + "name": "AbstractWrapper.blur", }, - "name": "findAllLiveRegions", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "blur", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "LiveRegionWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of MixedLineBarChart wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the MixedLineBarCharts inside the current wrapper. -If no matching MixedLineBarChart is found, returns an empty array.", + "description": "Performs a click by triggering a mouse event. +Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", "inheritedFrom": { - "name": "ElementWrapper.findAllMixedLineBarCharts", + "name": "AbstractWrapper.click", }, - "name": "findAllMixedLineBarCharts", + "name": "click", "parameters": [ { "flags": { "isOptional": true, }, - "name": "selector", + "name": "params", + "typeName": "MouseEventInit", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "MixedLineBarChartWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of Modal wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Modals inside the current wrapper. -If no matching Modal is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllModals", + "name": "AbstractWrapper.find", }, - "name": "findAllModals", + "name": "find", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "ModalWrapper", - "type": "reference", + "name": "NewElementType", }, ], }, }, { - "description": "Returns an array of Multiselect wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Multiselects inside the current wrapper. -If no matching Multiselect is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllMultiselects", + "name": "AbstractWrapper.findAll", }, - "name": "findAllMultiselects", + "name": "findAll", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "MultiselectWrapper", - "type": "reference", + "name": "ElementWrapper", }, ], }, }, { - "description": "Returns an array of Pagination wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Paginations inside the current wrapper. -If no matching Pagination is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllPaginations", + "name": "AbstractWrapper.findAllByClassName", }, - "name": "findAllPaginations", + "name": "findAllByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "PaginationWrapper", - "type": "reference", + "name": "ElementWrapper", }, ], }, }, { - "description": "Returns an array of PieChart wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the PieCharts inside the current wrapper. -If no matching PieChart is found, returns an empty array.", + "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. +If no CSS selector is specified, returns all of the components that match the specified component type. +If no matching component is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllPieCharts", + "name": "AbstractWrapper.findAllComponents", }, - "name": "findAllPieCharts", + "name": "findAllComponents", "parameters": [ { + "description": "Component's wrapper class", + "flags": { + "isOptional": false, + }, + "name": "ComponentClass", + "typeName": "ComponentWrapperClass", + }, + { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "PieChartWrapper", - "type": "reference", + "name": "Wrapper", }, ], }, }, { - "description": "Returns an array of Popover wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Popovers inside the current wrapper. -If no matching Popover is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllPopovers", + "name": "AbstractWrapper.findAny", }, - "name": "findAllPopovers", + "name": "findAny", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "selectors", + "typeName": "Array", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "PopoverWrapper", - "type": "reference", + "name": "NewElementType", }, ], }, }, { - "description": "Returns an array of ProgressBar wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the ProgressBars inside the current wrapper. -If no matching ProgressBar is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllProgressBars", - }, - "name": "findAllProgressBars", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "description": "Returns the column that is used for ascending sorting.", + "name": "findAscSortedColumn", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "ProgressBarWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "description": "Returns an array of PromptInput wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the PromptInputs inside the current wrapper. -If no matching PromptInput is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllPromptInputs", - }, - "name": "findAllPromptInputs", + "description": "Returns a table cell based on given row and column indices.", + "name": "findBodyCell", "parameters": [ { + "description": "1-based index of the row of the cell to select.", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "rowIndex", + "typeName": "number", + }, + { + "description": "1-based index of the column of the cell to select.", + "flags": { + "isOptional": false, + }, + "name": "columnIndex", + "typeName": "number", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "PromptInputWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "description": "Returns an array of PropertyFilter wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the PropertyFilters inside the current wrapper. -If no matching PropertyFilter is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllPropertyFilters", + "name": "AbstractWrapper.findByClassName", }, - "name": "findAllPropertyFilters", + "name": "findByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "PropertyFilterWrapper", - "type": "reference", + "name": "NewElementType", }, ], }, }, { - "description": "Returns an array of RadioGroup wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the RadioGroups inside the current wrapper. -If no matching RadioGroup is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllRadioGroups", + "name": "findCollectionPreferences", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "CollectionPreferencesWrapper", }, - "name": "findAllRadioGroups", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + }, + { + "name": "findColumnHeaders", + "parameters": [], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "RadioGroupWrapper", - "type": "reference", + "name": "ElementWrapper", }, ], }, }, { - "description": "Returns an array of S3ResourceSelector wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the S3ResourceSelectors inside the current wrapper. -If no matching S3ResourceSelector is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllS3ResourceSelectors", - }, - "name": "findAllS3ResourceSelectors", + "description": "Returns the element the user clicks when resizing a column.", + "name": "findColumnResizer", "parameters": [ { + "description": "1-based index of the column containing the resizer.", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "columnIndex", + "typeName": "number", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "S3ResourceSelectorWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "description": "Returns an array of SegmentedControl wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the SegmentedControls inside the current wrapper. -If no matching SegmentedControl is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllSegmentedControls", - }, - "name": "findAllSegmentedControls", + "name": "findColumnSortingArea", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "colIndex", + "typeName": "number", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "SegmentedControlWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "description": "Returns an array of Select wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Selects inside the current wrapper. -If no matching Select is found, returns an empty array.", + "description": "Returns the component wrapper matching the specified selector. +If the specified selector doesn't match any element, it returns \`null\`. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { - "name": "ElementWrapper.findAllSelects", + "name": "AbstractWrapper.findComponent", }, - "name": "findAllSelects", + "name": "findComponent", "parameters": [ { + "description": "CSS selector", "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", + }, + { + "description": "Component's wrapper class", + "flags": { + "isOptional": false, + }, + "name": "ComponentClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "Wrapper", + }, + }, + { + "description": "Returns the column that is used for descending sorting.", + "name": "findDescSortedColumn", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "SelectWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "description": "Returns an array of SideNavigation wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the SideNavigations inside the current wrapper. -If no matching SideNavigation is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllSideNavigations", - }, - "name": "findAllSideNavigations", + "description": "Returns the button that activates inline editing for a table cell based on given row and column indices.", + "name": "findEditCellButton", "parameters": [ { + "description": "1-based index of the row of the cell to select.", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "rowIndex", + "typeName": "number", + }, + { + "description": "1-based index of the column of the cell to select.", + "flags": { + "isOptional": false, + }, + "name": "columnIndex", + "typeName": "number", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "SideNavigationWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "description": "Returns an array of Slider wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Sliders inside the current wrapper. -If no matching Slider is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllSliders", - }, - "name": "findAllSliders", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findEditingCell", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "SliderWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "description": "Returns an array of SpaceBetween wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the SpaceBetweens inside the current wrapper. -If no matching SpaceBetween is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllSpaceBetweens", - }, - "name": "findAllSpaceBetweens", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findEditingCellCancelButton", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "SpaceBetweenWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "description": "Returns an array of Spinner wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Spinners inside the current wrapper. -If no matching Spinner is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllSpinners", - }, - "name": "findAllSpinners", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findEditingCellSaveButton", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "SpinnerWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "description": "Returns an array of SplitPanel wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the SplitPanels inside the current wrapper. -If no matching SplitPanel is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllSplitPanels", - }, - "name": "findAllSplitPanels", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "description": "Alias for findEmptySlot method for compatibility with previous versions", + "name": "findEmptyRegion", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "SplitPanelWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "description": "Returns an array of StatusIndicator wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the StatusIndicators inside the current wrapper. -If no matching StatusIndicator is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllStatusIndicators", - }, - "name": "findAllStatusIndicators", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findEmptySlot", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "StatusIndicatorWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "description": "Returns an array of Steps wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Steps inside the current wrapper. -If no matching Steps is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllSteps", - }, - "name": "findAllSteps", + "description": "Returns the expandable row toggle button.", + "name": "findExpandToggle", "parameters": [ { + "description": "1-based index of the row.", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "rowIndex", + "typeName": "number", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "StepsWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "description": "Returns an array of Table wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Tables inside the current wrapper. -If no matching Table is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTables", - }, - "name": "findAllTables", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findFilterSlot", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "TableWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "description": "Returns an array of Tabs wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Tabs inside the current wrapper. -If no matching Tabs is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTabs", - }, - "name": "findAllTabs", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findFooterSlot", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "TabsWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "description": "Returns an array of TagEditor wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the TagEditors inside the current wrapper. -If no matching TagEditor is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTagEditors", - }, - "name": "findAllTagEditors", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "description": "Alias for findHeaderSlot method for compatibility with previous versions", + "name": "findHeaderRegion", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "TagEditorWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "description": "Returns an array of TextContent wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the TextContents inside the current wrapper. -If no matching TextContent is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTextContents", - }, - "name": "findAllTextContents", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findHeaderSlot", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "TextContentWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "description": "Returns an array of TextFilter wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the TextFilters inside the current wrapper. -If no matching TextFilter is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTextFilters", - }, - "name": "findAllTextFilters", + "description": "Returns items loader of the specific item (matched by item's track ID).", + "name": "findItemsLoaderByItemId", "parameters": [ { + "description": "the (expandable) item ID provided with \`trackBy\` property. + +Note: when used with collection-hooks the \`trackBy\` is set automatically from \`expandableRows.getId\`.", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "itemId", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "TextFilterWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "description": "Returns an array of Textarea wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Textareas inside the current wrapper. -If no matching Textarea is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTextareas", - }, - "name": "findAllTextareas", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findLoadingText", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "TextareaWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "description": "Returns an array of Tiles wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Tiles inside the current wrapper. -If no matching Tiles is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTiles", - }, - "name": "findAllTiles", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findPagination", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "TilesWrapper", - "type": "reference", - }, - ], + "isNullable": true, + "name": "PaginationWrapper", }, }, { - "description": "Returns an array of TimeInput wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the TimeInputs inside the current wrapper. -If no matching TimeInput is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTimeInputs", - }, - "name": "findAllTimeInputs", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findPropertyFilter", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "TimeInputWrapper", - "type": "reference", - }, - ], + "isNullable": true, + "name": "PropertyFilterWrapper", }, }, { - "description": "Returns an array of ToggleButton wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the ToggleButtons inside the current wrapper. -If no matching ToggleButton is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllToggleButtons", - }, - "name": "findAllToggleButtons", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "description": "Returns items loader of the root table level.", + "name": "findRootItemsLoader", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "ToggleButtonWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "description": "Returns an array of Toggle wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Toggles inside the current wrapper. -If no matching Toggle is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllToggles", - }, - "name": "findAllToggles", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findRows", + "parameters": [], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "ToggleWrapper", - "type": "reference", + "name": "ElementWrapper", }, ], }, }, { - "description": "Returns an array of TokenGroup wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the TokenGroups inside the current wrapper. -If no matching TokenGroup is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTokenGroups", - }, - "name": "findAllTokenGroups", + "description": "Returns a row selection area for a given index.", + "name": "findRowSelectionArea", "parameters": [ { + "description": "1-based index of the row selection area to return.", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "rowIndex", + "typeName": "number", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "TokenGroupWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "description": "Returns an array of TopNavigation wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the TopNavigations inside the current wrapper. -If no matching TopNavigation is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTopNavigations", - }, - "name": "findAllTopNavigations", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findSelectAllTrigger", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "TopNavigationWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "description": "Returns an array of TreeView wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the TreeViews inside the current wrapper. -If no matching TreeView is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTreeViews", - }, - "name": "findAllTreeViews", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findSelectedRows", + "parameters": [], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "TreeViewWrapper", - "type": "reference", + "name": "ElementWrapper", }, ], }, }, { - "description": "Returns an array of TutorialPanel wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the TutorialPanels inside the current wrapper. -If no matching TutorialPanel is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTutorialPanels", - }, - "name": "findAllTutorialPanels", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findTextFilter", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "TutorialPanelWrapper", - "type": "reference", - }, - ], + "isNullable": true, + "name": "TextFilterWrapper", }, }, { - "description": "Returns an array of Wizard wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Wizards inside the current wrapper. -If no matching Wizard is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllWizards", + "name": "AbstractWrapper.fireEvent", }, - "name": "findAllWizards", + "name": "fireEvent", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "event", + "typeName": "Event", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "WizardWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first AnchorNavigation that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first AnchorNavigation. -If no matching AnchorNavigation is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findAnchorNavigation", + "name": "AbstractWrapper.focus", }, - "name": "findAnchorNavigation", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "focus", + "parameters": [], "returnType": { - "name": "AnchorNavigationWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first Annotation that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Annotation. -If no matching Annotation is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findAnnotation", + "name": "AbstractWrapper.getElement", }, - "name": "findAnnotation", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "getElement", + "parameters": [], "returnType": { - "name": "AnnotationWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementType", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", + "description": "Returns \`true\` if the row expand toggle is present and expanded. Returns \`false\` otherwise.", + "name": "isRowToggled", "parameters": [ { + "description": "1-based index of the row.", "flags": { "isOptional": false, }, - "name": "selectors", - "typeName": "Array", + "name": "rowIndex", + "typeName": "number", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "boolean", }, }, { - "description": "Returns the wrapper of the first AppLayout that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first AppLayout. -If no matching AppLayout is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findAppLayout", + "name": "AbstractWrapper.keydown", }, - "name": "findAppLayout", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "AppLayoutWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first AppLayoutToolbar that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first AppLayoutToolbar. -If no matching AppLayoutToolbar is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findAppLayoutToolbar", + "name": "AbstractWrapper.keydown", }, - "name": "findAppLayoutToolbar", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", }, ], "returnType": { - "name": "AppLayoutToolbarWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first AreaChart that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first AreaChart. -If no matching AreaChart is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findAreaChart", + "name": "AbstractWrapper.keypress", }, - "name": "findAreaChart", + "name": "keypress", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "AreaChartWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first AttributeEditor that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first AttributeEditor. -If no matching AttributeEditor is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findAttributeEditor", + "name": "AbstractWrapper.keyup", }, - "name": "findAttributeEditor", + "name": "keyup", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "AttributeEditorWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first Autosuggest that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Autosuggest. -If no matching Autosuggest is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findAutosuggest", + "name": "AbstractWrapper.matches", }, - "name": "findAutosuggest", + "name": "matches", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "AutosuggestWrapper | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, + ], + "name": "TableWrapper", + }, + { + "methods": [ { - "description": "Returns the wrapper of the first Badge that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Badge. -If no matching Badge is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findBadge", + "name": "AbstractWrapper.blur", }, - "name": "findBadge", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "blur", + "parameters": [], "returnType": { - "name": "BadgeWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first BarChart that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first BarChart. -If no matching BarChart is found, returns \`null\`.", + "description": "Performs a click by triggering a mouse event. +Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", "inheritedFrom": { - "name": "ElementWrapper.findBarChart", + "name": "AbstractWrapper.click", }, - "name": "findBarChart", + "name": "click", "parameters": [ { "flags": { "isOptional": true, }, - "name": "selector", + "name": "params", + "typeName": "MouseEventInit", }, ], "returnType": { - "name": "BarChartWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first Box that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Box. -If no matching Box is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findBox", + "name": "AbstractWrapper.find", }, - "name": "findBox", + "name": "find", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "BoxWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { - "description": "Returns the wrapper of the first BreadcrumbGroup that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first BreadcrumbGroup. -If no matching BreadcrumbGroup is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findBreadcrumbGroup", - }, - "name": "findBreadcrumbGroup", + "description": "Finds the tab action by using the tab id", + "name": "findActionByTabId", "parameters": [ { + "description": "ID of the clickable element to return", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "id", + "typeName": "string", }, ], "returnType": { - "name": "BreadcrumbGroupWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "description": "Returns the wrapper of the first Button that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Button. -If no matching Button is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findButton", - }, - "name": "findButton", + "description": "Finds the tab action by using the tab index", + "name": "findActionByTabIndex", "parameters": [ { + "description": "1-based index of the clickable element to return", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "index", + "typeName": "number", }, ], "returnType": { - "name": "ButtonWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "description": "Returns the wrapper of the first ButtonDropdown that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first ButtonDropdown. -If no matching ButtonDropdown is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findButtonDropdown", - }, - "name": "findButtonDropdown", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findActions", + "parameters": [], "returnType": { - "name": "ButtonDropdownWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "description": "Returns the wrapper of the first ButtonGroup that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first ButtonGroup. -If no matching ButtonGroup is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findButtonGroup", - }, - "name": "findButtonGroup", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "description": "Finds the currently active tab and returns the clickable element from its tab label.", + "name": "findActiveTab", + "parameters": [], "returnType": { - "name": "ButtonGroupWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLAnchorElement | HTMLButtonElement", + }, + ], }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, + "description": "Finds the tab action for the active tab", + "name": "findActiveTabAction", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", }, - "name": "className", - "typeName": "string", - }, - ], + ], + }, + }, + { + "description": "Finds the dismissible button for the active tab", + "name": "findActiveTabDismissibleButton", + "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ButtonWrapper", }, }, { - "description": "Returns the wrapper of the first Calendar that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Calendar. -If no matching Calendar is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findCalendar", + "name": "AbstractWrapper.findAll", }, - "name": "findCalendar", + "name": "findAll", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "CalendarWrapper | null", - "type": "union", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrapper of the first Cards that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Cards. -If no matching Cards is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findCards", + "name": "AbstractWrapper.findAllByClassName", }, - "name": "findCards", + "name": "findAllByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "CardsWrapper | null", - "type": "union", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrapper of the first Checkbox that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Checkbox. -If no matching Checkbox is found, returns \`null\`.", + "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. +If no CSS selector is specified, returns all of the components that match the specified component type. +If no matching component is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findCheckbox", + "name": "AbstractWrapper.findAllComponents", }, - "name": "findCheckbox", + "name": "findAllComponents", "parameters": [ { + "description": "Component's wrapper class", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "ComponentClass", + "typeName": "ComponentWrapperClass", }, - ], - "returnType": { - "name": "CheckboxWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the wrapper of the first CodeEditor that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first CodeEditor. -If no matching CodeEditor is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findCodeEditor", - }, - "name": "findCodeEditor", - "parameters": [ { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "CodeEditorWrapper | null", - "type": "union", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "Wrapper", + }, + ], }, }, { - "description": "Returns the wrapper of the first CollectionPreferences that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first CollectionPreferences. -If no matching CollectionPreferences is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findCollectionPreferences", + "name": "AbstractWrapper.findAny", }, - "name": "findCollectionPreferences", + "name": "findAny", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "selectors", + "typeName": "Array", }, ], "returnType": { - "name": "CollectionPreferencesWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { - "description": "Returns the wrapper of the first ColumnLayout that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first ColumnLayout. -If no matching ColumnLayout is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findColumnLayout", + "name": "AbstractWrapper.findByClassName", }, - "name": "findColumnLayout", + "name": "findByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "ColumnLayoutWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -64342,1299 +67965,1413 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "description": "Returns the wrapper of the first Container that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Container. -If no matching Container is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findContainer", - }, - "name": "findContainer", + "description": "Finds the dismissible button by using the tab id", + "name": "findDismissibleButtonByTabId", "parameters": [ { + "description": "ID of the clickable element to return", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "id", + "typeName": "string", }, ], "returnType": { - "name": "ContainerWrapper | null", - "type": "union", + "isNullable": true, + "name": "ButtonWrapper", }, }, { - "description": "Returns the wrapper of the first ContentLayout that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first ContentLayout. -If no matching ContentLayout is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findContentLayout", - }, - "name": "findContentLayout", + "description": "Finds the dismissible button by using the tab index.", + "name": "findDismissibleButtonByTabIndex", "parameters": [ { + "description": "1-based index of the clickable element to return", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "index", + "typeName": "number", }, ], "returnType": { - "name": "ContentLayoutWrapper | null", - "type": "union", + "isNullable": true, + "name": "ButtonWrapper", }, }, { - "description": "Returns the wrapper of the first CopyToClipboard that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first CopyToClipboard. -If no matching CopyToClipboard is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findCopyToClipboard", + "description": "Finds the currently focused tab, which might not be active if disabled with a reason.", + "name": "findFocusedTab", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLAnchorElement | HTMLButtonElement", + }, + ], + }, + }, + { + "description": "Finds the currently displayed tab content and returns it.", + "name": "findTabContent", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLDivElement", + }, + ], }, - "name": "findCopyToClipboard", + }, + { + "description": "Finds the tab header container at the given position (1-based) and returns the element.", + "name": "findTabHeaderContentByIndex", "parameters": [ { + "description": "1-based index of the clickable element to return", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "index", + "typeName": "number", }, ], "returnType": { - "name": "CopyToClipboardWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLAnchorElement | HTMLButtonElement", + }, + ], }, }, { - "description": "Returns the wrapper of the first DateInput that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first DateInput. -If no matching DateInput is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findDateInput", - }, - "name": "findDateInput", + "description": "Finds the tab with the given ID and returns the clickable element from its tab label.", + "name": "findTabLinkById", "parameters": [ { + "description": "ID of the clickable element to return", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "id", + "typeName": "string", }, ], "returnType": { - "name": "DateInputWrapper | null", - "type": "union", + "isNullable": true, + "name": "TabWrapper", }, }, { - "description": "Returns the wrapper of the first DatePicker that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first DatePicker. -If no matching DatePicker is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findDatePicker", - }, - "name": "findDatePicker", + "description": "Finds the tab at the given position (1-based) and returns the clickable element from its tab label.", + "name": "findTabLinkByIndex", "parameters": [ { + "description": "1-based index of the clickable element to return", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "index", + "typeName": "number", }, ], "returnType": { - "name": "DatePickerWrapper | null", - "type": "union", + "isNullable": true, + "name": "TabWrapper", + }, + }, + { + "description": "Finds all tab headers and returns the clickable elements from their labels.", + "name": "findTabLinks", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrapper of the first DateRangePicker that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first DateRangePicker. -If no matching DateRangePicker is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findDateRangePicker", + "name": "AbstractWrapper.fireEvent", }, - "name": "findDateRangePicker", + "name": "fireEvent", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "event", + "typeName": "Event", }, ], "returnType": { - "name": "DateRangePickerWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first Drawer that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Drawer. -If no matching Drawer is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findDrawer", + "name": "AbstractWrapper.focus", }, - "name": "findDrawer", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "focus", + "parameters": [], "returnType": { - "name": "DrawerWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first ExpandableSection that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first ExpandableSection. -If no matching ExpandableSection is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findExpandableSection", + "name": "AbstractWrapper.getElement", }, - "name": "findExpandableSection", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "getElement", + "parameters": [], "returnType": { - "name": "ExpandableSectionWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementType", }, }, { - "description": "Returns the wrapper of the first FileDropzone that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first FileDropzone. -If no matching FileDropzone is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findFileDropzone", + "name": "AbstractWrapper.keydown", }, - "name": "findFileDropzone", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "FileDropzoneWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first FileInput that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first FileInput. -If no matching FileInput is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findFileInput", + "name": "AbstractWrapper.keydown", }, - "name": "findFileInput", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", }, ], "returnType": { - "name": "FileInputWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first FileTokenGroup that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first FileTokenGroup. -If no matching FileTokenGroup is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findFileTokenGroup", + "name": "AbstractWrapper.keypress", }, - "name": "findFileTokenGroup", + "name": "keypress", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "FileTokenGroupWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first FileUpload that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first FileUpload. -If no matching FileUpload is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findFileUpload", + "name": "AbstractWrapper.keyup", }, - "name": "findFileUpload", + "name": "keyup", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "FileUploadWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first Flashbar that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Flashbar. -If no matching Flashbar is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findFlashbar", + "name": "AbstractWrapper.matches", }, - "name": "findFlashbar", + "name": "matches", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "FlashbarWrapper | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, + ], + "name": "TabsWrapper", + }, + { + "methods": [ { - "description": "Returns the wrapper of the first Form that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Form. -If no matching Form is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findForm", + "name": "AbstractWrapper.blur", }, - "name": "findForm", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "blur", + "parameters": [], "returnType": { - "name": "FormWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first FormField that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first FormField. -If no matching FormField is found, returns \`null\`.", + "description": "Performs a click by triggering a mouse event. +Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", "inheritedFrom": { - "name": "ElementWrapper.findFormField", + "name": "AbstractWrapper.click", }, - "name": "findFormField", + "name": "click", "parameters": [ { "flags": { "isOptional": true, }, - "name": "selector", + "name": "params", + "typeName": "MouseEventInit", }, ], "returnType": { - "name": "FormFieldWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first Grid that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Grid. -If no matching Grid is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findGrid", + "name": "AbstractWrapper.find", }, - "name": "findGrid", + "name": "find", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "GridWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { - "description": "Returns the wrapper of the first Header that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Header. -If no matching Header is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findHeader", + "name": "AbstractWrapper.findAll", }, - "name": "findHeader", + "name": "findAll", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "HeaderWrapper | null", - "type": "union", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrapper of the first HelpPanel that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first HelpPanel. -If no matching HelpPanel is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findHelpPanel", + "name": "AbstractWrapper.findAllByClassName", }, - "name": "findHelpPanel", + "name": "findAllByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "HelpPanelWrapper | null", - "type": "union", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrapper of the first Hotspot that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Hotspot. -If no matching Hotspot is found, returns \`null\`.", + "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. +If no CSS selector is specified, returns all of the components that match the specified component type. +If no matching component is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findHotspot", + "name": "AbstractWrapper.findAllComponents", }, - "name": "findHotspot", + "name": "findAllComponents", "parameters": [ { + "description": "Component's wrapper class", + "flags": { + "isOptional": false, + }, + "name": "ComponentClass", + "typeName": "ComponentWrapperClass", + }, + { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "HotspotWrapper | null", - "type": "union", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "Wrapper", + }, + ], }, }, { - "description": "Returns the wrapper of the first Icon that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Icon. -If no matching Icon is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findIcon", + "name": "AbstractWrapper.findAny", }, - "name": "findIcon", + "name": "findAny", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "selectors", + "typeName": "Array", }, ], "returnType": { - "name": "IconWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { - "description": "Returns the wrapper of the first Input that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Input. -If no matching Input is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findInput", + "name": "AbstractWrapper.findByClassName", }, - "name": "findInput", + "name": "findByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "InputWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { - "description": "Returns the wrapper of the first KeyValuePairs that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first KeyValuePairs. -If no matching KeyValuePairs is found, returns \`null\`.", + "description": "Returns the component wrapper matching the specified selector. +If the specified selector doesn't match any element, it returns \`null\`. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { - "name": "ElementWrapper.findKeyValuePairs", + "name": "AbstractWrapper.findComponent", }, - "name": "findKeyValuePairs", + "name": "findComponent", "parameters": [ { + "description": "CSS selector", "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", + }, + { + "description": "Component's wrapper class", + "flags": { + "isOptional": false, + }, + "name": "ComponentClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "KeyValuePairsWrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", + }, + }, + { + "name": "findDisabledReason", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "description": "Returns the wrapper of the first LineChart that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first LineChart. -If no matching LineChart is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findLineChart", + "name": "AbstractWrapper.fireEvent", }, - "name": "findLineChart", + "name": "fireEvent", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "event", + "typeName": "Event", }, ], "returnType": { - "name": "LineChartWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first Link that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Link. -If no matching Link is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findLink", + "name": "AbstractWrapper.focus", }, - "name": "findLink", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "focus", + "parameters": [], "returnType": { - "name": "LinkWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first List that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first List. -If no matching List is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findList", + "name": "AbstractWrapper.getElement", }, - "name": "findList", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "getElement", + "parameters": [], "returnType": { - "name": "ListWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementType", }, }, { - "description": "Returns the wrapper of the first LiveRegion that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first LiveRegion. -If no matching LiveRegion is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findLiveRegion", + "name": "AbstractWrapper.keydown", }, - "name": "findLiveRegion", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "LiveRegionWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first MixedLineBarChart that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first MixedLineBarChart. -If no matching MixedLineBarChart is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findMixedLineBarChart", + "name": "AbstractWrapper.keydown", }, - "name": "findMixedLineBarChart", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", }, ], "returnType": { - "name": "MixedLineBarChartWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first Modal that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Modal. -If no matching Modal is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findModal", + "name": "AbstractWrapper.keypress", }, - "name": "findModal", + "name": "keypress", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "ModalWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first Multiselect that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Multiselect. -If no matching Multiselect is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findMultiselect", + "name": "AbstractWrapper.keyup", }, - "name": "findMultiselect", + "name": "keyup", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "MultiselectWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first Pagination that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Pagination. -If no matching Pagination is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findPagination", + "name": "AbstractWrapper.matches", }, - "name": "findPagination", + "name": "matches", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "PaginationWrapper | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, + ], + "name": "TabWrapper", + }, + { + "methods": [ { - "description": "Returns the wrapper of the first PieChart that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first PieChart. -If no matching PieChart is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findPieChart", + "name": "AbstractWrapper.blur", }, - "name": "findPieChart", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "blur", + "parameters": [], "returnType": { - "name": "PieChartWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first Popover that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Popover. -If no matching Popover is found, returns \`null\`.", + "description": "Performs a click by triggering a mouse event. +Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", "inheritedFrom": { - "name": "ElementWrapper.findPopover", + "name": "AbstractWrapper.click", }, - "name": "findPopover", + "name": "click", "parameters": [ { "flags": { "isOptional": true, }, - "name": "selector", + "name": "params", + "typeName": "MouseEventInit", }, ], "returnType": { - "name": "PopoverWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first ProgressBar that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first ProgressBar. -If no matching ProgressBar is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findProgressBar", + "name": "AbstractWrapper.find", }, - "name": "findProgressBar", + "name": "find", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "ProgressBarWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { - "description": "Returns the wrapper of the first PromptInput that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first PromptInput. -If no matching PromptInput is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findPromptInput", + "name": "AttributeEditorWrapper.findAddButton", }, - "name": "findPromptInput", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findAddButton", + "parameters": [], "returnType": { - "name": "PromptInputWrapper | null", - "type": "union", + "isNullable": false, + "name": "ButtonWrapper", }, }, { - "description": "Returns the wrapper of the first PropertyFilter that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first PropertyFilter. -If no matching PropertyFilter is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findPropertyFilter", + "name": "AttributeEditorWrapper.findAdditionalInfo", }, - "name": "findPropertyFilter", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findAdditionalInfo", + "parameters": [], "returnType": { - "name": "PropertyFilterWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "description": "Returns the wrapper of the first RadioGroup that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first RadioGroup. -If no matching RadioGroup is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findRadioGroup", + "name": "AbstractWrapper.findAll", }, - "name": "findRadioGroup", + "name": "findAll", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "RadioGroupWrapper | null", - "type": "union", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrapper of the first S3ResourceSelector that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first S3ResourceSelector. -If no matching S3ResourceSelector is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findS3ResourceSelector", + "name": "AbstractWrapper.findAllByClassName", }, - "name": "findS3ResourceSelector", + "name": "findAllByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "S3ResourceSelectorWrapper | null", - "type": "union", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrapper of the first SegmentedControl that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first SegmentedControl. -If no matching SegmentedControl is found, returns \`null\`.", + "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. +If no CSS selector is specified, returns all of the components that match the specified component type. +If no matching component is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findSegmentedControl", + "name": "AbstractWrapper.findAllComponents", }, - "name": "findSegmentedControl", + "name": "findAllComponents", "parameters": [ { + "description": "Component's wrapper class", + "flags": { + "isOptional": false, + }, + "name": "ComponentClass", + "typeName": "ComponentWrapperClass", + }, + { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "SegmentedControlWrapper | null", - "type": "union", - }, + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "Wrapper", + }, + ], + }, }, { - "description": "Returns the wrapper of the first Select that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Select. -If no matching Select is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findSelect", + "name": "AbstractWrapper.findAny", }, - "name": "findSelect", + "name": "findAny", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "selectors", + "typeName": "Array", }, ], "returnType": { - "name": "SelectWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { - "description": "Returns the wrapper of the first SideNavigation that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first SideNavigation. -If no matching SideNavigation is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findSideNavigation", + "name": "AbstractWrapper.findByClassName", }, - "name": "findSideNavigation", + "name": "findByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "SideNavigationWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { - "description": "Returns the wrapper of the first Slider that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Slider. -If no matching Slider is found, returns \`null\`.", + "description": "Returns the component wrapper matching the specified selector. +If the specified selector doesn't match any element, it returns \`null\`. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { - "name": "ElementWrapper.findSlider", + "name": "AbstractWrapper.findComponent", }, - "name": "findSlider", + "name": "findComponent", "parameters": [ { + "description": "CSS selector", "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", + }, + { + "description": "Component's wrapper class", + "flags": { + "isOptional": false, + }, + "name": "ComponentClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "SliderWrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "description": "Returns the wrapper of the first SpaceBetween that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first SpaceBetween. -If no matching SpaceBetween is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findSpaceBetween", + "name": "AttributeEditorWrapper.findEmptySlot", + }, + "name": "findEmptySlot", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findLoadingText", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, - "name": "findSpaceBetween", + }, + { + "description": "Returns a row for a given index.", + "name": "findRow", "parameters": [ { + "description": "1-based row index", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "row", + "typeName": "number", }, ], "returnType": { - "name": "SpaceBetweenWrapper | null", - "type": "union", + "isNullable": true, + "name": "TagEditorRowWrapper", + }, + }, + { + "description": "Returns all rows. + +To find a specific row use the \`findRow(n)\` function as chaining \`findRows().get(n)\` can return unexpected results.", + "name": "findRows", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "TagEditorRowWrapper", + }, + ], }, }, { - "description": "Returns the wrapper of the first Spinner that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Spinner. -If no matching Spinner is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findSpinner", + "name": "AbstractWrapper.fireEvent", }, - "name": "findSpinner", + "name": "fireEvent", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "event", + "typeName": "Event", }, ], "returnType": { - "name": "SpinnerWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first SplitPanel that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first SplitPanel. -If no matching SplitPanel is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findSplitPanel", + "name": "AbstractWrapper.focus", }, - "name": "findSplitPanel", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "focus", + "parameters": [], "returnType": { - "name": "SplitPanelWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first StatusIndicator that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first StatusIndicator. -If no matching StatusIndicator is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findStatusIndicator", + "name": "AbstractWrapper.getElement", }, - "name": "findStatusIndicator", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "getElement", + "parameters": [], "returnType": { - "name": "StatusIndicatorWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementType", }, }, { - "description": "Returns the wrapper of the first Steps that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Steps. -If no matching Steps is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findSteps", + "name": "AbstractWrapper.keydown", }, - "name": "findSteps", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "StepsWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first Table that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Table. -If no matching Table is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findTable", + "name": "AbstractWrapper.keydown", }, - "name": "findTable", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", }, ], "returnType": { - "name": "TableWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first Tabs that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Tabs. -If no matching Tabs is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findTabs", + "name": "AbstractWrapper.keypress", }, - "name": "findTabs", + "name": "keypress", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "TabsWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first TagEditor that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first TagEditor. -If no matching TagEditor is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findTagEditor", + "name": "AbstractWrapper.keyup", }, - "name": "findTagEditor", + "name": "keyup", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "TagEditorWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first TextContent that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first TextContent. -If no matching TextContent is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findTextContent", + "name": "AbstractWrapper.matches", }, - "name": "findTextContent", + "name": "matches", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "TextContentWrapper | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, + ], + "name": "TagEditorWrapper", + }, + { + "methods": [ { - "description": "Returns the wrapper of the first TextFilter that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first TextFilter. -If no matching TextFilter is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findTextFilter", + "name": "AbstractWrapper.blur", }, - "name": "findTextFilter", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "blur", + "parameters": [], "returnType": { - "name": "TextFilterWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first Textarea that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Textarea. -If no matching Textarea is found, returns \`null\`.", + "description": "Performs a click by triggering a mouse event. +Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", "inheritedFrom": { - "name": "ElementWrapper.findTextarea", + "name": "AbstractWrapper.click", }, - "name": "findTextarea", + "name": "click", "parameters": [ { "flags": { "isOptional": true, }, - "name": "selector", + "name": "params", + "typeName": "MouseEventInit", }, ], "returnType": { - "name": "TextareaWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first Tiles that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Tiles. -If no matching Tiles is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findTiles", + "name": "AbstractWrapper.find", }, - "name": "findTiles", + "name": "find", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "TilesWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { - "description": "Returns the wrapper of the first TimeInput that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first TimeInput. -If no matching TimeInput is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findTimeInput", + "name": "AbstractWrapper.findAll", }, - "name": "findTimeInput", + "name": "findAll", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "TimeInputWrapper | null", - "type": "union", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrapper of the first Toggle that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Toggle. -If no matching Toggle is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findToggle", + "name": "AbstractWrapper.findAllByClassName", }, - "name": "findToggle", + "name": "findAllByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "ToggleWrapper | null", - "type": "union", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrapper of the first ToggleButton that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first ToggleButton. -If no matching ToggleButton is found, returns \`null\`.", + "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. +If no CSS selector is specified, returns all of the components that match the specified component type. +If no matching component is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findToggleButton", + "name": "AbstractWrapper.findAllComponents", }, - "name": "findToggleButton", + "name": "findAllComponents", "parameters": [ { + "description": "Component's wrapper class", + "flags": { + "isOptional": false, + }, + "name": "ComponentClass", + "typeName": "ComponentWrapperClass", + }, + { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "ToggleButtonWrapper | null", - "type": "union", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "Wrapper", + }, + ], }, }, { - "description": "Returns the wrapper of the first TokenGroup that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first TokenGroup. -If no matching TokenGroup is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findTokenGroup", + "name": "AbstractWrapper.findAny", }, - "name": "findTokenGroup", + "name": "findAny", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "selectors", + "typeName": "Array", }, ], "returnType": { - "name": "TokenGroupWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { - "description": "Returns the wrapper of the first TopNavigation that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first TopNavigation. -If no matching TopNavigation is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findTopNavigation", + "name": "AbstractWrapper.findByClassName", }, - "name": "findTopNavigation", + "name": "findByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "TopNavigationWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { - "description": "Returns the wrapper of the first TreeView that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first TreeView. -If no matching TreeView is found, returns \`null\`.", + "description": "Returns the component wrapper matching the specified selector. +If the specified selector doesn't match any element, it returns \`null\`. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { - "name": "ElementWrapper.findTreeView", + "name": "AbstractWrapper.findComponent", }, - "name": "findTreeView", + "name": "findComponent", "parameters": [ { + "description": "CSS selector", "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", + }, + { + "description": "Component's wrapper class", + "flags": { + "isOptional": false, + }, + "name": "ComponentClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "TreeViewWrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", + }, + }, + { + "inheritedFrom": { + "name": "AttributeEditorRowWrapper.findCustomAction", + }, + "name": "findCustomAction", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "description": "Returns the wrapper of the first TutorialPanel that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first TutorialPanel. -If no matching TutorialPanel is found, returns \`null\`.", + "description": "Returns a field for a given index", "inheritedFrom": { - "name": "ElementWrapper.findTutorialPanel", + "name": "AttributeEditorRowWrapper.findField", }, - "name": "findTutorialPanel", + "name": "findField", "parameters": [ { + "description": "1-based column index", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "column", + "typeName": "number", }, ], "returnType": { - "name": "TutorialPanelWrapper | null", - "type": "union", + "isNullable": true, + "name": "FormFieldWrapper", }, }, { - "description": "Returns the wrapper of the first Wizard that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Wizard. -If no matching Wizard is found, returns \`null\`.", + "description": "Returns all fields. Fields are supplied in the \`definition\` property of the component.", "inheritedFrom": { - "name": "ElementWrapper.findWizard", + "name": "AttributeEditorRowWrapper.findFields", }, - "name": "findWizard", - "parameters": [ - { - "flags": { - "isOptional": true, + "name": "findFields", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "FormFieldWrapper", }, - "name": "selector", - }, - ], + ], + }, + }, + { + "inheritedFrom": { + "name": "AttributeEditorRowWrapper.findRemoveButton", + }, + "name": "findRemoveButton", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ButtonWrapper", + }, + }, + { + "name": "findUndoButton", + "parameters": [], "returnType": { - "name": "WizardWrapper | null", - "type": "union", + "isNullable": true, + "name": "LinkWrapper", }, }, { @@ -65652,8 +69389,8 @@ If no matching Wizard is found, returns \`null\`.", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -65663,8 +69400,8 @@ If no matching Wizard is found, returns \`null\`.", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -65674,8 +69411,8 @@ If no matching Wizard is found, returns \`null\`.", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -65693,8 +69430,27 @@ If no matching Wizard is found, returns \`null\`.", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -65712,8 +69468,8 @@ If no matching Wizard is found, returns \`null\`.", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -65731,8 +69487,8 @@ If no matching Wizard is found, returns \`null\`.", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -65750,12 +69506,12 @@ If no matching Wizard is found, returns \`null\`.", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "OptionsListWrapper", + "name": "TagEditorRowWrapper", }, { "methods": [ @@ -65766,8 +69522,8 @@ If no matching Wizard is found, returns \`null\`.", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -65787,8 +69543,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -65806,16 +69562,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findActions", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -65833,8 +69586,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -65852,8 +69610,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -65866,28 +69629,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -65903,12 +69666,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -65926,23 +69694,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -65950,42 +69722,17 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "name": "findContent", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findIcon", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findSecondaryContent", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { @@ -66003,8 +69750,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -66014,8 +69761,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -66025,8 +69772,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -66044,34 +69791,34 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keypress", + "name": "AbstractWrapper.keydown", }, - "name": "keypress", + "name": "keydown", "parameters": [ { "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keyup", + "name": "AbstractWrapper.keypress", }, - "name": "keyup", + "name": "keypress", "parameters": [ { "flags": { @@ -66082,13 +69829,32 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.matches", + "name": "AbstractWrapper.keyup", + }, + "name": "keyup", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyCode", + "typeName": "KeyCode", + }, + ], + "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.matches", }, "name": "matches", "parameters": [ @@ -66101,12 +69867,12 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "StructuredItemWrapper", + "name": "TextContentWrapper", }, { "methods": [ @@ -66117,8 +69883,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -66138,8 +69904,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -66157,29 +69923,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the wrapper of the first Alert that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Alert. -If no matching Alert is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findAlert", - }, - "name": "findAlert", - "parameters": [ - { - "flags": { - "isOptional": true, + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", }, - "name": "selector", - }, - ], - "returnType": { - "name": "AlertWrapper | null", - "type": "union", + ], }, }, { @@ -66197,592 +69947,417 @@ If no matching Alert is found, returns \`null\`.", }, ], "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "description": "Returns an array of Alert wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Alerts inside the current wrapper. -If no matching Alert is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllAlerts", - }, - "name": "findAllAlerts", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "AlertWrapper", - "type": "reference", + "name": "ElementWrapper", }, ], }, }, { - "description": "Returns an array of AnchorNavigation wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the AnchorNavigations inside the current wrapper. -If no matching AnchorNavigation is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllAnchorNavigations", + "name": "AbstractWrapper.findAllByClassName", }, - "name": "findAllAnchorNavigations", + "name": "findAllByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "AnchorNavigationWrapper", - "type": "reference", + "name": "ElementWrapper", }, ], }, }, { - "description": "Returns an array of Annotation wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Annotations inside the current wrapper. -If no matching Annotation is found, returns an empty array.", + "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. +If no CSS selector is specified, returns all of the components that match the specified component type. +If no matching component is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllAnnotations", + "name": "AbstractWrapper.findAllComponents", }, - "name": "findAllAnnotations", + "name": "findAllComponents", "parameters": [ { + "description": "Component's wrapper class", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "ComponentClass", + "typeName": "ComponentWrapperClass", }, - ], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "AnnotationWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns an array of AppLayoutToolbar wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the AppLayoutToolbars inside the current wrapper. -If no matching AppLayoutToolbar is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllAppLayoutToolbars", - }, - "name": "findAllAppLayoutToolbars", - "parameters": [ { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "AppLayoutToolbarWrapper", - "type": "reference", + "name": "Wrapper", }, ], }, }, { - "description": "Returns an array of AppLayout wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the AppLayouts inside the current wrapper. -If no matching AppLayout is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllAppLayouts", + "name": "AbstractWrapper.findAny", }, - "name": "findAllAppLayouts", + "name": "findAny", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "selectors", + "typeName": "Array", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "AppLayoutWrapper", - "type": "reference", + "name": "NewElementType", }, ], }, }, { - "description": "Returns an array of AreaChart wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the AreaCharts inside the current wrapper. -If no matching AreaChart is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllAreaCharts", + "name": "AbstractWrapper.findByClassName", }, - "name": "findAllAreaCharts", + "name": "findByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "AreaChartWrapper", - "type": "reference", + "name": "NewElementType", }, ], }, }, { - "description": "Returns an array of AttributeEditor wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the AttributeEditors inside the current wrapper. -If no matching AttributeEditor is found, returns an empty array.", + "description": "Returns the component wrapper matching the specified selector. +If the specified selector doesn't match any element, it returns \`null\`. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { - "name": "ElementWrapper.findAllAttributeEditors", + "name": "AbstractWrapper.findComponent", }, - "name": "findAllAttributeEditors", + "name": "findComponent", "parameters": [ { + "description": "CSS selector", "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, - ], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "AttributeEditorWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns an array of Autosuggest wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Autosuggests inside the current wrapper. -If no matching Autosuggest is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllAutosuggests", - }, - "name": "findAllAutosuggests", - "parameters": [ { + "description": "Component's wrapper class", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "ComponentClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "AutosuggestWrapper", - "type": "reference", - }, - ], + "isNullable": true, + "name": "Wrapper", }, }, { - "description": "Returns an array of Badge wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Badges inside the current wrapper. -If no matching Badge is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllBadges", + "name": "findInput", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "InputWrapper", }, - "name": "findAllBadges", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + }, + { + "name": "findResultsCount", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", "typeArguments": [ { - "name": "BadgeWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "description": "Returns an array of BarChart wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the BarCharts inside the current wrapper. -If no matching BarChart is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllBarCharts", + "name": "AbstractWrapper.fireEvent", }, - "name": "findAllBarCharts", + "name": "fireEvent", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "event", + "typeName": "Event", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "BarChartWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of Box wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Boxes inside the current wrapper. -If no matching Box is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllBoxes", + "name": "AbstractWrapper.focus", }, - "name": "findAllBoxes", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "focus", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "BoxWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of BreadcrumbGroup wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the BreadcrumbGroups inside the current wrapper. -If no matching BreadcrumbGroup is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllBreadcrumbGroups", + "name": "AbstractWrapper.getElement", }, - "name": "findAllBreadcrumbGroups", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "getElement", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "BreadcrumbGroupWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "ElementType", }, }, { - "description": "Returns an array of ButtonDropdown wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the ButtonDropdowns inside the current wrapper. -If no matching ButtonDropdown is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllButtonDropdowns", + "name": "AbstractWrapper.keydown", }, - "name": "findAllButtonDropdowns", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ButtonDropdownWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of ButtonGroup wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the ButtonGroups inside the current wrapper. -If no matching ButtonGroup is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllButtonGroups", + "name": "AbstractWrapper.keydown", }, - "name": "findAllButtonGroups", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ButtonGroupWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of Button wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Buttons inside the current wrapper. -If no matching Button is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllButtons", + "name": "AbstractWrapper.keypress", }, - "name": "findAllButtons", + "name": "keypress", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ButtonWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", + "name": "AbstractWrapper.keyup", }, - "name": "findAllByClassName", + "name": "keyup", "parameters": [ { "flags": { "isOptional": false, }, - "name": "className", - "typeName": "string", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of Calendar wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Calendars inside the current wrapper. -If no matching Calendar is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllCalendars", + "name": "AbstractWrapper.matches", }, - "name": "findAllCalendars", + "name": "matches", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "CalendarWrapper", - "type": "reference", - }, - ], + "isNullable": true, + "name": "this", }, }, + ], + "name": "TextFilterWrapper", + }, + { + "methods": [ { - "description": "Returns an array of Cards wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Cards inside the current wrapper. -If no matching Cards is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllCards", + "name": "AbstractWrapper.blur", }, - "name": "findAllCards", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "blur", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "CardsWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of Checkbox wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Checkboxes inside the current wrapper. -If no matching Checkbox is found, returns an empty array.", + "description": "Performs a click by triggering a mouse event. +Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", "inheritedFrom": { - "name": "ElementWrapper.findAllCheckboxes", + "name": "AbstractWrapper.click", }, - "name": "findAllCheckboxes", + "name": "click", "parameters": [ { "flags": { "isOptional": true, }, - "name": "selector", + "name": "params", + "typeName": "MouseEventInit", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "CheckboxWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of CodeEditor wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the CodeEditors inside the current wrapper. -If no matching CodeEditor is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllCodeEditors", + "name": "AbstractWrapper.find", }, - "name": "findAllCodeEditors", + "name": "find", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "CodeEditorWrapper", - "type": "reference", + "name": "NewElementType", }, ], }, }, { - "description": "Returns an array of CollectionPreferences wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the CollectionPreferences inside the current wrapper. -If no matching CollectionPreferences is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllCollectionPreferences", + "name": "AbstractWrapper.findAll", }, - "name": "findAllCollectionPreferences", + "name": "findAll", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "CollectionPreferencesWrapper", - "type": "reference", + "name": "ElementWrapper", }, ], }, }, { - "description": "Returns an array of ColumnLayout wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the ColumnLayouts inside the current wrapper. -If no matching ColumnLayout is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllColumnLayouts", + "name": "AbstractWrapper.findAllByClassName", }, - "name": "findAllColumnLayouts", + "name": "findAllByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "ColumnLayoutWrapper", - "type": "reference", + "name": "ElementWrapper", }, ], }, @@ -66797,1990 +70372,1691 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, }, { - "description": "Returns an array of Container wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Containers inside the current wrapper. -If no matching Container is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllContainers", + "name": "AbstractWrapper.findAny", }, - "name": "findAllContainers", + "name": "findAny", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "selectors", + "typeName": "Array", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "ContainerWrapper", - "type": "reference", + "name": "NewElementType", }, ], }, }, { - "description": "Returns an array of ContentLayout wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the ContentLayouts inside the current wrapper. -If no matching ContentLayout is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllContentLayouts", + "name": "AbstractWrapper.findByClassName", }, - "name": "findAllContentLayouts", + "name": "findByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "ContentLayoutWrapper", - "type": "reference", + "name": "NewElementType", }, ], }, }, { - "description": "Returns an array of CopyToClipboard wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the CopyToClipboards inside the current wrapper. -If no matching CopyToClipboard is found, returns an empty array.", + "description": "Returns the component wrapper matching the specified selector. +If the specified selector doesn't match any element, it returns \`null\`. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { - "name": "ElementWrapper.findAllCopyToClipboards", + "name": "AbstractWrapper.findComponent", }, - "name": "findAllCopyToClipboards", + "name": "findComponent", "parameters": [ { + "description": "CSS selector", "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", + }, + { + "description": "Component's wrapper class", + "flags": { + "isOptional": false, + }, + "name": "ComponentClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "Wrapper", + }, + }, + { + "name": "findNativeTextarea", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", "typeArguments": [ { - "name": "CopyToClipboardWrapper", - "type": "reference", + "name": "HTMLTextAreaElement", }, ], }, }, { - "description": "Returns an array of DateInput wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the DateInputs inside the current wrapper. -If no matching DateInput is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllDateInputs", + "name": "AbstractWrapper.fireEvent", }, - "name": "findAllDateInputs", + "name": "fireEvent", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "event", + "typeName": "Event", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "DateInputWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of DatePicker wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the DatePickers inside the current wrapper. -If no matching DatePicker is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllDatePickers", + "name": "AbstractWrapper.focus", }, - "name": "findAllDatePickers", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "focus", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "DatePickerWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of DateRangePicker wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the DateRangePickers inside the current wrapper. -If no matching DateRangePicker is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllDateRangePickers", + "name": "AbstractWrapper.getElement", }, - "name": "findAllDateRangePickers", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "getElement", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "DateRangePickerWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "ElementType", + }, + }, + { + "description": "Gets the value of the component. + +Returns the current value of the textarea.", + "name": "getTextareaValue", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "string", }, }, { - "description": "Returns an array of Drawer wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Drawers inside the current wrapper. -If no matching Drawer is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllDrawers", + "name": "AbstractWrapper.keydown", }, - "name": "findAllDrawers", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "DrawerWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of ExpandableSection wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the ExpandableSections inside the current wrapper. -If no matching ExpandableSection is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllExpandableSections", + "name": "AbstractWrapper.keydown", }, - "name": "findAllExpandableSections", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ExpandableSectionWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of FileDropzone wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the FileDropzones inside the current wrapper. -If no matching FileDropzone is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllFileDropzones", + "name": "AbstractWrapper.keypress", }, - "name": "findAllFileDropzones", + "name": "keypress", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "FileDropzoneWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of FileInput wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the FileInputs inside the current wrapper. -If no matching FileInput is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllFileInputs", + "name": "AbstractWrapper.keyup", }, - "name": "findAllFileInputs", + "name": "keyup", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "FileInputWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of FileTokenGroup wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the FileTokenGroups inside the current wrapper. -If no matching FileTokenGroup is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllFileTokenGroups", + "name": "AbstractWrapper.matches", }, - "name": "findAllFileTokenGroups", + "name": "matches", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "FileTokenGroupWrapper", - "type": "reference", - }, - ], + "isNullable": true, + "name": "this", }, }, { - "description": "Returns an array of FileUpload wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the FileUploads inside the current wrapper. -If no matching FileUpload is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllFileUploads", - }, - "name": "findAllFileUploads", + "description": "Sets the value of the component and calls the onChange handler.", + "name": "setTextareaValue", "parameters": [ { + "description": "value to set the textarea to.", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "value", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "FileUploadWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, + ], + "name": "TextareaWrapper", + }, + { + "methods": [ { - "description": "Returns an array of Flashbar wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Flashbars inside the current wrapper. -If no matching Flashbar is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllFlashbars", + "name": "AbstractWrapper.blur", }, - "name": "findAllFlashbars", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "blur", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "FlashbarWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of FormField wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the FormFields inside the current wrapper. -If no matching FormField is found, returns an empty array.", + "description": "Performs a click by triggering a mouse event. +Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", "inheritedFrom": { - "name": "ElementWrapper.findAllFormFields", + "name": "AbstractWrapper.click", }, - "name": "findAllFormFields", + "name": "click", "parameters": [ { "flags": { "isOptional": true, }, - "name": "selector", + "name": "params", + "typeName": "MouseEventInit", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "FormFieldWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of Form wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Forms inside the current wrapper. -If no matching Form is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllForms", + "name": "AbstractWrapper.find", }, - "name": "findAllForms", + "name": "find", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "FormWrapper", - "type": "reference", + "name": "NewElementType", }, ], }, }, { - "description": "Returns an array of Grid wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Grids inside the current wrapper. -If no matching Grid is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllGrids", + "name": "AbstractWrapper.findAll", }, - "name": "findAllGrids", + "name": "findAll", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "GridWrapper", - "type": "reference", + "name": "ElementWrapper", }, ], }, }, { - "description": "Returns an array of Header wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Headers inside the current wrapper. -If no matching Header is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllHeaders", + "name": "AbstractWrapper.findAllByClassName", }, - "name": "findAllHeaders", + "name": "findAllByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "HeaderWrapper", - "type": "reference", + "name": "ElementWrapper", }, ], }, }, { - "description": "Returns an array of HelpPanel wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the HelpPanels inside the current wrapper. -If no matching HelpPanel is found, returns an empty array.", + "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. +If no CSS selector is specified, returns all of the components that match the specified component type. +If no matching component is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllHelpPanels", + "name": "AbstractWrapper.findAllComponents", }, - "name": "findAllHelpPanels", + "name": "findAllComponents", "parameters": [ { + "description": "Component's wrapper class", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "ComponentClass", + "typeName": "ComponentWrapperClass", }, - ], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "HelpPanelWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns an array of Hotspot wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Hotspots inside the current wrapper. -If no matching Hotspot is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllHotspots", - }, - "name": "findAllHotspots", - "parameters": [ { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "HotspotWrapper", - "type": "reference", + "name": "Wrapper", }, ], }, }, { - "description": "Returns an array of Icon wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Icons inside the current wrapper. -If no matching Icon is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllIcons", + "name": "AbstractWrapper.findAny", }, - "name": "findAllIcons", + "name": "findAny", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "selectors", + "typeName": "Array", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "IconWrapper", - "type": "reference", + "name": "NewElementType", }, ], }, }, { - "description": "Returns an array of Input wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Inputs inside the current wrapper. -If no matching Input is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllInputs", + "name": "AbstractWrapper.findByClassName", }, - "name": "findAllInputs", + "name": "findByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "InputWrapper", - "type": "reference", + "name": "NewElementType", }, ], }, }, { - "description": "Returns an array of KeyValuePairs wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the KeyValuePairs inside the current wrapper. -If no matching KeyValuePairs is found, returns an empty array.", + "description": "Returns the component wrapper matching the specified selector. +If the specified selector doesn't match any element, it returns \`null\`. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { - "name": "ElementWrapper.findAllKeyValuePairs", + "name": "AbstractWrapper.findComponent", }, - "name": "findAllKeyValuePairs", + "name": "findComponent", "parameters": [ { + "description": "CSS selector", "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, - ], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "KeyValuePairsWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns an array of LineChart wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the LineCharts inside the current wrapper. -If no matching LineChart is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllLineCharts", - }, - "name": "findAllLineCharts", - "parameters": [ { + "description": "Component's wrapper class", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "ComponentClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "LineChartWrapper", - "type": "reference", - }, - ], + "isNullable": true, + "name": "Wrapper", }, }, { - "description": "Returns an array of Link wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Links inside the current wrapper. -If no matching Link is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllLinks", - }, - "name": "findAllLinks", + "name": "findInputByValue", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "value", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "LinkWrapper", - "type": "reference", + "name": "HTMLInputElement", }, ], }, }, { - "description": "Returns an array of List wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Lists inside the current wrapper. -If no matching List is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllLists", - }, - "name": "findAllLists", + "name": "findItemByValue", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "value", + "typeName": "string", }, ], "returnType": { + "isNullable": true, + "name": "TileWrapper", + }, + }, + { + "name": "findItems", + "parameters": [], + "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "ListWrapper", - "type": "reference", + "name": "TileWrapper", }, ], }, }, { - "description": "Returns an array of LiveRegion wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the LiveRegions inside the current wrapper. -If no matching LiveRegion is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllLiveRegions", + "name": "AbstractWrapper.fireEvent", }, - "name": "findAllLiveRegions", + "name": "fireEvent", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "event", + "typeName": "Event", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "LiveRegionWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of MixedLineBarChart wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the MixedLineBarCharts inside the current wrapper. -If no matching MixedLineBarChart is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllMixedLineBarCharts", + "name": "AbstractWrapper.focus", }, - "name": "findAllMixedLineBarCharts", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "focus", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "MixedLineBarChartWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of Modal wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Modals inside the current wrapper. -If no matching Modal is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllModals", + "name": "AbstractWrapper.getElement", }, - "name": "findAllModals", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "getElement", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ModalWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "ElementType", }, }, { - "description": "Returns an array of Multiselect wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Multiselects inside the current wrapper. -If no matching Multiselect is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllMultiselects", + "name": "AbstractWrapper.keydown", }, - "name": "findAllMultiselects", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "MultiselectWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of Pagination wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Paginations inside the current wrapper. -If no matching Pagination is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllPaginations", + "name": "AbstractWrapper.keydown", }, - "name": "findAllPaginations", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "PaginationWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of PieChart wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the PieCharts inside the current wrapper. -If no matching PieChart is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllPieCharts", + "name": "AbstractWrapper.keypress", }, - "name": "findAllPieCharts", + "name": "keypress", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "PieChartWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of Popover wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Popovers inside the current wrapper. -If no matching Popover is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllPopovers", + "name": "AbstractWrapper.keyup", }, - "name": "findAllPopovers", + "name": "keyup", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "PopoverWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of ProgressBar wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the ProgressBars inside the current wrapper. -If no matching ProgressBar is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllProgressBars", + "name": "AbstractWrapper.matches", }, - "name": "findAllProgressBars", + "name": "matches", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ProgressBarWrapper", - "type": "reference", - }, - ], + "isNullable": true, + "name": "this", }, }, + ], + "name": "TilesWrapper", + }, + { + "methods": [ { - "description": "Returns an array of PromptInput wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the PromptInputs inside the current wrapper. -If no matching PromptInput is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllPromptInputs", + "name": "BaseInputWrapper.blur", }, - "name": "findAllPromptInputs", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "blur", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "PromptInputWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of PropertyFilter wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the PropertyFilters inside the current wrapper. -If no matching PropertyFilter is found, returns an empty array.", + "description": "Performs a click by triggering a mouse event. +Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", "inheritedFrom": { - "name": "ElementWrapper.findAllPropertyFilters", + "name": "AbstractWrapper.click", }, - "name": "findAllPropertyFilters", + "name": "click", "parameters": [ { "flags": { "isOptional": true, }, - "name": "selector", + "name": "params", + "typeName": "MouseEventInit", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "PropertyFilterWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of RadioGroup wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the RadioGroups inside the current wrapper. -If no matching RadioGroup is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllRadioGroups", + "name": "AbstractWrapper.find", }, - "name": "findAllRadioGroups", + "name": "find", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "RadioGroupWrapper", - "type": "reference", + "name": "NewElementType", }, ], }, }, { - "description": "Returns an array of S3ResourceSelector wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the S3ResourceSelectors inside the current wrapper. -If no matching S3ResourceSelector is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllS3ResourceSelectors", + "name": "AbstractWrapper.findAll", }, - "name": "findAllS3ResourceSelectors", + "name": "findAll", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "S3ResourceSelectorWrapper", - "type": "reference", + "name": "ElementWrapper", }, ], }, }, { - "description": "Returns an array of SegmentedControl wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the SegmentedControls inside the current wrapper. -If no matching SegmentedControl is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllSegmentedControls", + "name": "AbstractWrapper.findAllByClassName", }, - "name": "findAllSegmentedControls", + "name": "findAllByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "SegmentedControlWrapper", - "type": "reference", + "name": "ElementWrapper", }, ], }, }, { - "description": "Returns an array of Select wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Selects inside the current wrapper. -If no matching Select is found, returns an empty array.", + "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. +If no CSS selector is specified, returns all of the components that match the specified component type. +If no matching component is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllSelects", + "name": "AbstractWrapper.findAllComponents", }, - "name": "findAllSelects", + "name": "findAllComponents", "parameters": [ { + "description": "Component's wrapper class", + "flags": { + "isOptional": false, + }, + "name": "ComponentClass", + "typeName": "ComponentWrapperClass", + }, + { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "SelectWrapper", - "type": "reference", + "name": "Wrapper", }, ], }, }, { - "description": "Returns an array of SideNavigation wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the SideNavigations inside the current wrapper. -If no matching SideNavigation is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllSideNavigations", + "name": "AbstractWrapper.findAny", }, - "name": "findAllSideNavigations", + "name": "findAny", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "selectors", + "typeName": "Array", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "SideNavigationWrapper", - "type": "reference", + "name": "NewElementType", }, ], }, }, { - "description": "Returns an array of Slider wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Sliders inside the current wrapper. -If no matching Slider is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllSliders", + "name": "AbstractWrapper.findByClassName", }, - "name": "findAllSliders", + "name": "findByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "SliderWrapper", - "type": "reference", + "name": "NewElementType", }, ], }, }, { - "description": "Returns an array of SpaceBetween wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the SpaceBetweens inside the current wrapper. -If no matching SpaceBetween is found, returns an empty array.", + "description": "Returns the component wrapper matching the specified selector. +If the specified selector doesn't match any element, it returns \`null\`. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { - "name": "ElementWrapper.findAllSpaceBetweens", + "name": "AbstractWrapper.findComponent", }, - "name": "findAllSpaceBetweens", + "name": "findComponent", "parameters": [ { + "description": "CSS selector", "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", + }, + { + "description": "Component's wrapper class", + "flags": { + "isOptional": false, + }, + "name": "ComponentClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "SpaceBetweenWrapper", - "type": "reference", - }, - ], + "isNullable": true, + "name": "Wrapper", }, }, { - "description": "Returns an array of Spinner wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Spinners inside the current wrapper. -If no matching Spinner is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllSpinners", + "name": "BaseInputWrapper.findNativeInput", }, - "name": "findAllSpinners", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findNativeInput", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", "typeArguments": [ { - "name": "SpinnerWrapper", - "type": "reference", + "name": "HTMLInputElement", }, ], }, }, { - "description": "Returns an array of SplitPanel wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the SplitPanels inside the current wrapper. -If no matching SplitPanel is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllSplitPanels", + "name": "AbstractWrapper.fireEvent", }, - "name": "findAllSplitPanels", + "name": "fireEvent", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "event", + "typeName": "Event", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "SplitPanelWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of StatusIndicator wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the StatusIndicators inside the current wrapper. -If no matching StatusIndicator is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllStatusIndicators", + "name": "BaseInputWrapper.focus", }, - "name": "findAllStatusIndicators", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "focus", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "StatusIndicatorWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of Steps wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Steps inside the current wrapper. -If no matching Steps is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllSteps", + "name": "AbstractWrapper.getElement", }, - "name": "findAllSteps", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "getElement", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "StepsWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "ElementType", + }, + }, + { + "description": "Gets the value of the component. + +Returns the current value of the input.", + "inheritedFrom": { + "name": "BaseInputWrapper.getInputValue", + }, + "name": "getInputValue", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "string", + }, + }, + { + "inheritedFrom": { + "name": "BaseInputWrapper.isDisabled", + }, + "name": "isDisabled", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "boolean", }, }, { - "description": "Returns an array of Table wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Tables inside the current wrapper. -If no matching Table is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllTables", + "name": "AbstractWrapper.keydown", }, - "name": "findAllTables", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "TableWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of Tabs wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Tabs inside the current wrapper. -If no matching Tabs is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllTabs", + "name": "AbstractWrapper.keydown", }, - "name": "findAllTabs", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "TabsWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of TagEditor wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the TagEditors inside the current wrapper. -If no matching TagEditor is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllTagEditors", + "name": "AbstractWrapper.keypress", }, - "name": "findAllTagEditors", + "name": "keypress", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "TagEditorWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of TextContent wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the TextContents inside the current wrapper. -If no matching TextContent is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllTextContents", + "name": "AbstractWrapper.keyup", }, - "name": "findAllTextContents", + "name": "keyup", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "TextContentWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of TextFilter wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the TextFilters inside the current wrapper. -If no matching TextFilter is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllTextFilters", + "name": "AbstractWrapper.matches", }, - "name": "findAllTextFilters", + "name": "matches", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "TextFilterWrapper", - "type": "reference", - }, - ], + "isNullable": true, + "name": "this", }, }, { - "description": "Returns an array of Textarea wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Textareas inside the current wrapper. -If no matching Textarea is found, returns an empty array.", + "description": "Sets the value of the component and calls the \`onChange\` handler", "inheritedFrom": { - "name": "ElementWrapper.findAllTextareas", + "name": "BaseInputWrapper.setInputValue", }, - "name": "findAllTextareas", + "name": "setInputValue", "parameters": [ { + "description": "The value the input is set to.", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "value", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "TextareaWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", + }, + }, + ], + "name": "TimeInputWrapper", + }, + { + "methods": [ + { + "inheritedFrom": { + "name": "AbstractWrapper.blur", + }, + "name": "blur", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of Tiles wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Tiles inside the current wrapper. -If no matching Tiles is found, returns an empty array.", + "description": "Performs a click by triggering a mouse event. +Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", "inheritedFrom": { - "name": "ElementWrapper.findAllTiles", + "name": "AbstractWrapper.click", }, - "name": "findAllTiles", + "name": "click", "parameters": [ { "flags": { "isOptional": true, }, - "name": "selector", + "name": "params", + "typeName": "MouseEventInit", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "TilesWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "void", }, }, { - "description": "Returns an array of TimeInput wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the TimeInputs inside the current wrapper. -If no matching TimeInput is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllTimeInputs", + "name": "AbstractWrapper.find", }, - "name": "findAllTimeInputs", + "name": "find", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "TimeInputWrapper", - "type": "reference", + "name": "NewElementType", }, ], }, }, { - "description": "Returns an array of ToggleButton wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the ToggleButtons inside the current wrapper. -If no matching ToggleButton is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllToggleButtons", + "name": "AbstractWrapper.findAll", }, - "name": "findAllToggleButtons", + "name": "findAll", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "ToggleButtonWrapper", - "type": "reference", + "name": "ElementWrapper", }, ], }, }, { - "description": "Returns an array of Toggle wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Toggles inside the current wrapper. -If no matching Toggle is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllToggles", + "name": "AbstractWrapper.findAllByClassName", }, - "name": "findAllToggles", + "name": "findAllByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "ToggleWrapper", - "type": "reference", + "name": "ElementWrapper", }, ], }, }, { - "description": "Returns an array of TokenGroup wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the TokenGroups inside the current wrapper. -If no matching TokenGroup is found, returns an empty array.", + "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. +If no CSS selector is specified, returns all of the components that match the specified component type. +If no matching component is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllTokenGroups", + "name": "AbstractWrapper.findAllComponents", }, - "name": "findAllTokenGroups", + "name": "findAllComponents", "parameters": [ { + "description": "Component's wrapper class", + "flags": { + "isOptional": false, + }, + "name": "ComponentClass", + "typeName": "ComponentWrapperClass", + }, + { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "TokenGroupWrapper", - "type": "reference", + "name": "Wrapper", }, ], }, }, { - "description": "Returns an array of TopNavigation wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the TopNavigations inside the current wrapper. -If no matching TopNavigation is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllTopNavigations", + "name": "AbstractWrapper.findAny", }, - "name": "findAllTopNavigations", + "name": "findAny", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "selectors", + "typeName": "Array", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "TopNavigationWrapper", - "type": "reference", + "name": "NewElementType", }, ], }, }, { - "description": "Returns an array of TreeView wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the TreeViews inside the current wrapper. -If no matching TreeView is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findAllTreeViews", + "name": "AbstractWrapper.findByClassName", }, - "name": "findAllTreeViews", + "name": "findByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "TreeViewWrapper", - "type": "reference", + "name": "NewElementType", }, ], }, }, { - "description": "Returns an array of TutorialPanel wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the TutorialPanels inside the current wrapper. -If no matching TutorialPanel is found, returns an empty array.", + "description": "Returns the component wrapper matching the specified selector. +If the specified selector doesn't match any element, it returns \`null\`. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { - "name": "ElementWrapper.findAllTutorialPanels", + "name": "AbstractWrapper.findComponent", }, - "name": "findAllTutorialPanels", + "name": "findComponent", "parameters": [ { + "description": "CSS selector", "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", + }, + { + "description": "Component's wrapper class", + "flags": { + "isOptional": false, + }, + "name": "ComponentClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "Wrapper", + }, + }, + { + "name": "findDescription", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "TutorialPanelWrapper", - "type": "reference", + "name": "HTMLElement", }, ], }, }, { - "description": "Returns an array of Wizard wrapper that matches the specified CSS selector. -If no CSS selector is specified, returns all of the Wizards inside the current wrapper. -If no matching Wizard is found, returns an empty array.", - "inheritedFrom": { - "name": "ElementWrapper.findAllWizards", - }, - "name": "findAllWizards", - "parameters": [ - { - "flags": { - "isOptional": true, + "name": "findLabel", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", }, - "name": "selector", - }, - ], + ], + }, + }, + { + "name": "findNativeInput", + "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", "typeArguments": [ { - "name": "WizardWrapper", - "type": "reference", + "name": "HTMLInputElement", }, ], }, }, { - "description": "Returns the wrapper of the first AnchorNavigation that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first AnchorNavigation. -If no matching AnchorNavigation is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findAnchorNavigation", + "name": "AbstractWrapper.fireEvent", }, - "name": "findAnchorNavigation", + "name": "fireEvent", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "event", + "typeName": "Event", }, ], "returnType": { - "name": "AnchorNavigationWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first Annotation that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Annotation. -If no matching Annotation is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findAnnotation", + "name": "AbstractWrapper.focus", }, - "name": "findAnnotation", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "focus", + "parameters": [], "returnType": { - "name": "AnnotationWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.findAny", + "name": "AbstractWrapper.getElement", }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], + "name": "getElement", + "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementType", }, }, { - "description": "Returns the wrapper of the first AppLayout that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first AppLayout. -If no matching AppLayout is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findAppLayout", + "name": "AbstractWrapper.keydown", }, - "name": "findAppLayout", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "AppLayoutWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first AppLayoutToolbar that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first AppLayoutToolbar. -If no matching AppLayoutToolbar is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findAppLayoutToolbar", + "name": "AbstractWrapper.keydown", }, - "name": "findAppLayoutToolbar", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", }, ], "returnType": { - "name": "AppLayoutToolbarWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first AreaChart that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first AreaChart. -If no matching AreaChart is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findAreaChart", + "name": "AbstractWrapper.keypress", }, - "name": "findAreaChart", + "name": "keypress", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "AreaChartWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first AttributeEditor that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first AttributeEditor. -If no matching AttributeEditor is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findAttributeEditor", + "name": "AbstractWrapper.keyup", }, - "name": "findAttributeEditor", + "name": "keyup", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "AttributeEditorWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first Autosuggest that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Autosuggest. -If no matching Autosuggest is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findAutosuggest", + "name": "AbstractWrapper.matches", }, - "name": "findAutosuggest", + "name": "matches", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "AutosuggestWrapper | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, + ], + "name": "ToggleWrapper", + }, + { + "methods": [ { - "description": "Returns the wrapper of the first Badge that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Badge. -If no matching Badge is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findBadge", + "name": "AbstractWrapper.blur", }, - "name": "findBadge", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "blur", + "parameters": [], "returnType": { - "name": "BadgeWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first BarChart that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first BarChart. -If no matching BarChart is found, returns \`null\`.", + "description": "Performs a click by triggering a mouse event. +Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", "inheritedFrom": { - "name": "ElementWrapper.findBarChart", + "name": "AbstractWrapper.click", }, - "name": "findBarChart", + "name": "click", "parameters": [ { "flags": { "isOptional": true, }, - "name": "selector", + "name": "params", + "typeName": "MouseEventInit", }, ], "returnType": { - "name": "BarChartWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first Box that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Box. -If no matching Box is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findBox", + "name": "AbstractWrapper.find", }, - "name": "findBox", + "name": "find", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "BoxWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { - "description": "Returns the wrapper of the first BreadcrumbGroup that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first BreadcrumbGroup. -If no matching BreadcrumbGroup is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findBreadcrumbGroup", + "name": "AbstractWrapper.findAll", }, - "name": "findBreadcrumbGroup", + "name": "findAll", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "BreadcrumbGroupWrapper | null", - "type": "union", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrapper of the first Button that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Button. -If no matching Button is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findButton", + "name": "AbstractWrapper.findAllByClassName", }, - "name": "findButton", + "name": "findAllByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "ButtonWrapper | null", - "type": "union", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrapper of the first ButtonDropdown that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first ButtonDropdown. -If no matching ButtonDropdown is found, returns \`null\`.", + "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. +If no CSS selector is specified, returns all of the components that match the specified component type. +If no matching component is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findButtonDropdown", + "name": "AbstractWrapper.findAllComponents", }, - "name": "findButtonDropdown", + "name": "findAllComponents", "parameters": [ { + "description": "Component's wrapper class", + "flags": { + "isOptional": false, + }, + "name": "ComponentClass", + "typeName": "ComponentWrapperClass", + }, + { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "ButtonDropdownWrapper | null", - "type": "union", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "Wrapper", + }, + ], }, }, { - "description": "Returns the wrapper of the first ButtonGroup that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first ButtonGroup. -If no matching ButtonGroup is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findButtonGroup", + "name": "AbstractWrapper.findAny", }, - "name": "findButtonGroup", + "name": "findAny", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "selectors", + "typeName": "Array", }, ], "returnType": { - "name": "ButtonGroupWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -68798,1449 +72074,1374 @@ If no matching ButtonGroup is found, returns \`null\`.", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { - "description": "Returns the wrapper of the first Calendar that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Calendar. -If no matching Calendar is found, returns \`null\`.", + "description": "Returns the component wrapper matching the specified selector. +If the specified selector doesn't match any element, it returns \`null\`. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { - "name": "ElementWrapper.findCalendar", + "name": "AbstractWrapper.findComponent", }, - "name": "findCalendar", + "name": "findComponent", "parameters": [ { + "description": "CSS selector", "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, - ], - "returnType": { - "name": "CalendarWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the wrapper of the first Cards that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Cards. -If no matching Cards is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findCards", - }, - "name": "findCards", - "parameters": [ { + "description": "Component's wrapper class", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "ComponentClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "CardsWrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "description": "Returns the wrapper of the first Checkbox that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Checkbox. -If no matching Checkbox is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findCheckbox", + "name": "ButtonWrapper.findDisabledReason", }, - "name": "findCheckbox", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findDisabledReason", + "parameters": [], "returnType": { - "name": "CheckboxWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "description": "Returns the wrapper of the first CodeEditor that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first CodeEditor. -If no matching CodeEditor is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findCodeEditor", + "name": "ButtonWrapper.findLoadingIndicator", }, - "name": "findCodeEditor", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findLoadingIndicator", + "parameters": [], "returnType": { - "name": "CodeEditorWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "description": "Returns the wrapper of the first CollectionPreferences that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first CollectionPreferences. -If no matching CollectionPreferences is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findCollectionPreferences", + "name": "ButtonWrapper.findTextRegion", }, - "name": "findCollectionPreferences", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findTextRegion", + "parameters": [], "returnType": { - "name": "CollectionPreferencesWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "description": "Returns the wrapper of the first ColumnLayout that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first ColumnLayout. -If no matching ColumnLayout is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findColumnLayout", + "name": "AbstractWrapper.fireEvent", }, - "name": "findColumnLayout", + "name": "fireEvent", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "event", + "typeName": "Event", }, ], "returnType": { - "name": "ColumnLayoutWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", "inheritedFrom": { - "name": "AbstractWrapper.findComponent", + "name": "AbstractWrapper.focus", }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], + "name": "focus", + "parameters": [], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first Container that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Container. -If no matching Container is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findContainer", + "name": "AbstractWrapper.getElement", }, - "name": "findContainer", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "getElement", + "parameters": [], "returnType": { - "name": "ContainerWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementType", }, }, { - "description": "Returns the wrapper of the first ContentLayout that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first ContentLayout. -If no matching ContentLayout is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findContentLayout", + "name": "ButtonWrapper.isDisabled", }, - "name": "findContentLayout", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "isDisabled", + "parameters": [], "returnType": { - "name": "ContentLayoutWrapper | null", - "type": "union", + "isNullable": false, + "name": "boolean", }, }, { - "description": "Returns the wrapper of the first CopyToClipboard that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first CopyToClipboard. -If no matching CopyToClipboard is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findCopyToClipboard", - }, - "name": "findCopyToClipboard", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "isPressed", + "parameters": [], "returnType": { - "name": "CopyToClipboardWrapper | null", - "type": "union", + "isNullable": false, + "name": "boolean", }, }, { - "description": "Returns the wrapper of the first DateInput that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first DateInput. -If no matching DateInput is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findDateInput", + "name": "AbstractWrapper.keydown", }, - "name": "findDateInput", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "DateInputWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first DatePicker that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first DatePicker. -If no matching DatePicker is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findDatePicker", + "name": "AbstractWrapper.keydown", }, - "name": "findDatePicker", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", }, ], "returnType": { - "name": "DatePickerWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first DateRangePicker that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first DateRangePicker. -If no matching DateRangePicker is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findDateRangePicker", + "name": "AbstractWrapper.keypress", }, - "name": "findDateRangePicker", + "name": "keypress", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "DateRangePickerWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first Drawer that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Drawer. -If no matching Drawer is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findDrawer", + "name": "AbstractWrapper.keyup", }, - "name": "findDrawer", + "name": "keyup", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "DrawerWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first ExpandableSection that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first ExpandableSection. -If no matching ExpandableSection is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findExpandableSection", + "name": "AbstractWrapper.matches", }, - "name": "findExpandableSection", + "name": "matches", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "ExpandableSectionWrapper | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, + ], + "name": "ToggleButtonWrapper", + }, + { + "methods": [ { - "description": "Returns the wrapper of the first FileDropzone that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first FileDropzone. -If no matching FileDropzone is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findFileDropzone", + "name": "AbstractWrapper.blur", }, - "name": "findFileDropzone", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "blur", + "parameters": [], "returnType": { - "name": "FileDropzoneWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first FileInput that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first FileInput. -If no matching FileInput is found, returns \`null\`.", + "description": "Performs a click by triggering a mouse event. +Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", "inheritedFrom": { - "name": "ElementWrapper.findFileInput", + "name": "AbstractWrapper.click", }, - "name": "findFileInput", + "name": "click", "parameters": [ { "flags": { "isOptional": true, }, - "name": "selector", + "name": "params", + "typeName": "MouseEventInit", }, ], "returnType": { - "name": "FileInputWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first FileTokenGroup that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first FileTokenGroup. -If no matching FileTokenGroup is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findFileTokenGroup", + "name": "AbstractWrapper.find", }, - "name": "findFileTokenGroup", + "name": "find", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "FileTokenGroupWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { - "description": "Returns the wrapper of the first FileUpload that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first FileUpload. -If no matching FileUpload is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findFileUpload", + "name": "AbstractWrapper.findAll", }, - "name": "findFileUpload", + "name": "findAll", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "FileUploadWrapper | null", - "type": "union", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrapper of the first Flashbar that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Flashbar. -If no matching Flashbar is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findFlashbar", + "name": "AbstractWrapper.findAllByClassName", }, - "name": "findFlashbar", + "name": "findAllByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "FlashbarWrapper | null", - "type": "union", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrapper of the first Form that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Form. -If no matching Form is found, returns \`null\`.", + "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. +If no CSS selector is specified, returns all of the components that match the specified component type. +If no matching component is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findForm", + "name": "AbstractWrapper.findAllComponents", }, - "name": "findForm", + "name": "findAllComponents", "parameters": [ { + "description": "Component's wrapper class", + "flags": { + "isOptional": false, + }, + "name": "ComponentClass", + "typeName": "ComponentWrapperClass", + }, + { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "FormWrapper | null", - "type": "union", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "Wrapper", + }, + ], }, }, { - "description": "Returns the wrapper of the first FormField that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first FormField. -If no matching FormField is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findFormField", + "name": "AbstractWrapper.findAny", }, - "name": "findFormField", + "name": "findAny", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "selectors", + "typeName": "Array", }, ], "returnType": { - "name": "FormFieldWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { - "description": "Returns the wrapper of the first Grid that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Grid. -If no matching Grid is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findGrid", + "name": "AbstractWrapper.findByClassName", }, - "name": "findGrid", + "name": "findByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "GridWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { - "description": "Returns the wrapper of the first Header that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Header. -If no matching Header is found, returns \`null\`.", + "description": "Returns the component wrapper matching the specified selector. +If the specified selector doesn't match any element, it returns \`null\`. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { - "name": "ElementWrapper.findHeader", + "name": "AbstractWrapper.findComponent", }, - "name": "findHeader", + "name": "findComponent", "parameters": [ { + "description": "CSS selector", "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", + }, + { + "description": "Component's wrapper class", + "flags": { + "isOptional": false, + }, + "name": "ComponentClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "HeaderWrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "description": "Returns the wrapper of the first HelpPanel that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first HelpPanel. -If no matching HelpPanel is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findHelpPanel", - }, - "name": "findHelpPanel", + "description": "Returns a token from the group for a given index.", + "name": "findToken", "parameters": [ { + "description": "1-based index of the token to return.", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "tokenIndex", + "typeName": "number", }, ], "returnType": { - "name": "HelpPanelWrapper | null", - "type": "union", + "isNullable": true, + "name": "TokenWrapper", }, }, { - "description": "Returns the wrapper of the first Hotspot that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Hotspot. -If no matching Hotspot is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findHotspot", - }, - "name": "findHotspot", - "parameters": [ - { - "flags": { - "isOptional": true, + "name": "findTokens", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "TokenWrapper", }, - "name": "selector", - }, - ], + ], + }, + }, + { + "description": "Returns the token toggle button.", + "name": "findTokenToggle", + "parameters": [], "returnType": { - "name": "HotspotWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "description": "Returns the wrapper of the first Icon that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Icon. -If no matching Icon is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findIcon", + "name": "AbstractWrapper.fireEvent", }, - "name": "findIcon", + "name": "fireEvent", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "event", + "typeName": "Event", }, ], "returnType": { - "name": "IconWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first Input that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Input. -If no matching Input is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findInput", + "name": "AbstractWrapper.focus", }, - "name": "findInput", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "focus", + "parameters": [], "returnType": { - "name": "InputWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first KeyValuePairs that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first KeyValuePairs. -If no matching KeyValuePairs is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findKeyValuePairs", + "name": "AbstractWrapper.getElement", }, - "name": "findKeyValuePairs", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "getElement", + "parameters": [], "returnType": { - "name": "KeyValuePairsWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementType", }, }, { - "description": "Returns the wrapper of the first LineChart that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first LineChart. -If no matching LineChart is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findLineChart", + "name": "AbstractWrapper.keydown", }, - "name": "findLineChart", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "LineChartWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first Link that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Link. -If no matching Link is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findLink", + "name": "AbstractWrapper.keydown", }, - "name": "findLink", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", }, ], "returnType": { - "name": "LinkWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first List that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first List. -If no matching List is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findList", + "name": "AbstractWrapper.keypress", }, - "name": "findList", + "name": "keypress", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "ListWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first LiveRegion that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first LiveRegion. -If no matching LiveRegion is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findLiveRegion", + "name": "AbstractWrapper.keyup", }, - "name": "findLiveRegion", + "name": "keyup", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "LiveRegionWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first MixedLineBarChart that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first MixedLineBarChart. -If no matching MixedLineBarChart is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findMixedLineBarChart", + "name": "AbstractWrapper.matches", }, - "name": "findMixedLineBarChart", + "name": "matches", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "MixedLineBarChartWrapper | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, + ], + "name": "TokenGroupWrapper", + }, + { + "methods": [ { - "description": "Returns the wrapper of the first Modal that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Modal. -If no matching Modal is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findModal", + "name": "AbstractWrapper.blur", }, - "name": "findModal", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "blur", + "parameters": [], "returnType": { - "name": "ModalWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first Multiselect that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Multiselect. -If no matching Multiselect is found, returns \`null\`.", + "description": "Performs a click by triggering a mouse event. +Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", "inheritedFrom": { - "name": "ElementWrapper.findMultiselect", + "name": "AbstractWrapper.click", }, - "name": "findMultiselect", + "name": "click", "parameters": [ { "flags": { "isOptional": true, }, - "name": "selector", + "name": "params", + "typeName": "MouseEventInit", }, ], "returnType": { - "name": "MultiselectWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first Pagination that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Pagination. -If no matching Pagination is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findPagination", + "name": "AbstractWrapper.find", }, - "name": "findPagination", + "name": "find", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "PaginationWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { - "description": "Returns the wrapper of the first PieChart that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first PieChart. -If no matching PieChart is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findPieChart", + "name": "AbstractWrapper.findAll", }, - "name": "findPieChart", + "name": "findAll", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "PieChartWrapper | null", - "type": "union", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrapper of the first Popover that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Popover. -If no matching Popover is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findPopover", + "name": "AbstractWrapper.findAllByClassName", }, - "name": "findPopover", + "name": "findAllByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "PopoverWrapper | null", - "type": "union", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrapper of the first ProgressBar that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first ProgressBar. -If no matching ProgressBar is found, returns \`null\`.", + "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. +If no CSS selector is specified, returns all of the components that match the specified component type. +If no matching component is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findProgressBar", + "name": "AbstractWrapper.findAllComponents", }, - "name": "findProgressBar", + "name": "findAllComponents", "parameters": [ { + "description": "Component's wrapper class", + "flags": { + "isOptional": false, + }, + "name": "ComponentClass", + "typeName": "ComponentWrapperClass", + }, + { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "ProgressBarWrapper | null", - "type": "union", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "Wrapper", + }, + ], }, }, { - "description": "Returns the wrapper of the first PromptInput that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first PromptInput. -If no matching PromptInput is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findPromptInput", + "name": "AbstractWrapper.findAny", }, - "name": "findPromptInput", + "name": "findAny", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "selectors", + "typeName": "Array", }, ], "returnType": { - "name": "PromptInputWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { - "description": "Returns the wrapper of the first PropertyFilter that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first PropertyFilter. -If no matching PropertyFilter is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findPropertyFilter", + "name": "AbstractWrapper.findByClassName", }, - "name": "findPropertyFilter", + "name": "findByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "PropertyFilterWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { - "description": "Returns the wrapper of the first RadioGroup that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first RadioGroup. -If no matching RadioGroup is found, returns \`null\`.", + "description": "Returns the component wrapper matching the specified selector. +If the specified selector doesn't match any element, it returns \`null\`. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { - "name": "ElementWrapper.findRadioGroup", + "name": "AbstractWrapper.findComponent", }, - "name": "findRadioGroup", + "name": "findComponent", "parameters": [ { + "description": "CSS selector", "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, - ], - "returnType": { - "name": "RadioGroupWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the wrapper of the first S3ResourceSelector that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first S3ResourceSelector. -If no matching S3ResourceSelector is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findS3ResourceSelector", - }, - "name": "findS3ResourceSelector", - "parameters": [ { + "description": "Component's wrapper class", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "ComponentClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "S3ResourceSelectorWrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "description": "Returns the wrapper of the first SegmentedControl that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first SegmentedControl. -If no matching SegmentedControl is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findSegmentedControl", - }, - "name": "findSegmentedControl", - "parameters": [ - { - "flags": { - "isOptional": true, + "name": "findIdentityLink", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", }, - "name": "selector", - }, - ], + ], + }, + }, + { + "name": "findLogo", + "parameters": [], "returnType": { - "name": "SegmentedControlWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "description": "Returns the wrapper of the first Select that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Select. -If no matching Select is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findSelect", + "name": "findOverflowMenu", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "OverflowMenu", }, - "name": "findSelect", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + }, + { + "name": "findOverflowMenuButton", + "parameters": [], "returnType": { - "name": "SelectWrapper | null", - "type": "union", + "isNullable": true, + "name": "ButtonWrapper", }, }, { - "description": "Returns the wrapper of the first SideNavigation that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first SideNavigation. -If no matching SideNavigation is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findSideNavigation", + "name": "findSearch", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, - "name": "findSideNavigation", - "parameters": [ - { - "flags": { - "isOptional": true, + }, + { + "name": "findSearchButton", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", }, - "name": "selector", - }, - ], + ], + }, + }, + { + "name": "findTitle", + "parameters": [], "returnType": { - "name": "SideNavigationWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "description": "Returns the wrapper of the first Slider that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Slider. -If no matching Slider is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findSlider", + "name": "findUtilities", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "TopNavigationUtilityWrapper", + }, + ], }, - "name": "findSlider", + }, + { + "name": "findUtility", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "index", + "typeName": "number", }, ], "returnType": { - "name": "SliderWrapper | null", - "type": "union", + "isNullable": true, + "name": "TopNavigationUtilityWrapper", }, }, { - "description": "Returns the wrapper of the first SpaceBetween that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first SpaceBetween. -If no matching SpaceBetween is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findSpaceBetween", + "name": "AbstractWrapper.fireEvent", }, - "name": "findSpaceBetween", + "name": "fireEvent", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "event", + "typeName": "Event", }, ], "returnType": { - "name": "SpaceBetweenWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first Spinner that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Spinner. -If no matching Spinner is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findSpinner", + "name": "AbstractWrapper.focus", }, - "name": "findSpinner", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "focus", + "parameters": [], "returnType": { - "name": "SpinnerWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first SplitPanel that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first SplitPanel. -If no matching SplitPanel is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findSplitPanel", + "name": "AbstractWrapper.getElement", }, - "name": "findSplitPanel", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "getElement", + "parameters": [], "returnType": { - "name": "SplitPanelWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementType", }, }, { - "description": "Returns the wrapper of the first StatusIndicator that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first StatusIndicator. -If no matching StatusIndicator is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findStatusIndicator", + "name": "AbstractWrapper.keydown", }, - "name": "findStatusIndicator", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "StatusIndicatorWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first Steps that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Steps. -If no matching Steps is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findSteps", + "name": "AbstractWrapper.keydown", }, - "name": "findSteps", + "name": "keydown", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", }, ], "returnType": { - "name": "StepsWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first Table that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Table. -If no matching Table is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findTable", + "name": "AbstractWrapper.keypress", }, - "name": "findTable", + "name": "keypress", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "TableWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first Tabs that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Tabs. -If no matching Tabs is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findTabs", + "name": "AbstractWrapper.keyup", }, - "name": "findTabs", + "name": "keyup", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "keyCode", + "typeName": "KeyCode", }, ], "returnType": { - "name": "TabsWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first TagEditor that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first TagEditor. -If no matching TagEditor is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findTagEditor", + "name": "AbstractWrapper.matches", }, - "name": "findTagEditor", + "name": "matches", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "TagEditorWrapper | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, + ], + "name": "TopNavigationWrapper", + }, + { + "methods": [ { - "description": "Returns the wrapper of the first TextContent that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first TextContent. -If no matching TextContent is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findTextContent", + "name": "AbstractWrapper.blur", }, - "name": "findTextContent", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "blur", + "parameters": [], "returnType": { - "name": "TextContentWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first TextFilter that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first TextFilter. -If no matching TextFilter is found, returns \`null\`.", + "description": "Performs a click by triggering a mouse event. +Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", "inheritedFrom": { - "name": "ElementWrapper.findTextFilter", + "name": "AbstractWrapper.click", }, - "name": "findTextFilter", + "name": "click", "parameters": [ { "flags": { "isOptional": true, }, - "name": "selector", + "name": "params", + "typeName": "MouseEventInit", }, ], "returnType": { - "name": "TextFilterWrapper | null", - "type": "union", + "isNullable": false, + "name": "void", }, }, { - "description": "Returns the wrapper of the first Textarea that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Textarea. -If no matching Textarea is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findTextarea", + "name": "AbstractWrapper.find", }, - "name": "findTextarea", + "name": "find", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "TextareaWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { - "description": "Returns the wrapper of the first Tiles that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Tiles. -If no matching Tiles is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findTiles", + "name": "AbstractWrapper.findAll", }, - "name": "findTiles", + "name": "findAll", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "TilesWrapper | null", - "type": "union", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrapper of the first TimeInput that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first TimeInput. -If no matching TimeInput is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findTimeInput", + "name": "AbstractWrapper.findAllByClassName", }, - "name": "findTimeInput", + "name": "findAllByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "TimeInputWrapper | null", - "type": "union", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrapper of the first Toggle that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Toggle. -If no matching Toggle is found, returns \`null\`.", + "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. +If no CSS selector is specified, returns all of the components that match the specified component type. +If no matching component is found, returns an empty array.", "inheritedFrom": { - "name": "ElementWrapper.findToggle", + "name": "AbstractWrapper.findAllComponents", }, - "name": "findToggle", + "name": "findAllComponents", "parameters": [ { + "description": "Component's wrapper class", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "ComponentClass", + "typeName": "ComponentWrapperClass", }, - ], - "returnType": { - "name": "ToggleWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the wrapper of the first ToggleButton that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first ToggleButton. -If no matching ToggleButton is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findToggleButton", - }, - "name": "findToggleButton", - "parameters": [ { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "ToggleButtonWrapper | null", - "type": "union", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "Wrapper", + }, + ], }, }, { - "description": "Returns the wrapper of the first TokenGroup that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first TokenGroup. -If no matching TokenGroup is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findTokenGroup", + "name": "AbstractWrapper.findAny", }, - "name": "findTokenGroup", + "name": "findAny", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "selectors", + "typeName": "Array", }, ], "returnType": { - "name": "TokenGroupWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { - "description": "Returns the wrapper of the first TopNavigation that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first TopNavigation. -If no matching TopNavigation is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findTopNavigation", - }, - "name": "findTopNavigation", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findButtonLinkType", + "parameters": [], "returnType": { - "name": "TopNavigationWrapper | null", - "type": "union", + "isNullable": true, + "name": "LinkWrapper", }, }, { - "description": "Returns the wrapper of the first TreeView that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first TreeView. -If no matching TreeView is found, returns \`null\`.", "inheritedFrom": { - "name": "ElementWrapper.findTreeView", + "name": "AbstractWrapper.findByClassName", }, - "name": "findTreeView", + "name": "findByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "TreeViewWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { - "description": "Returns the wrapper of the first TutorialPanel that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first TutorialPanel. -If no matching TutorialPanel is found, returns \`null\`.", + "description": "Returns the component wrapper matching the specified selector. +If the specified selector doesn't match any element, it returns \`null\`. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { - "name": "ElementWrapper.findTutorialPanel", + "name": "AbstractWrapper.findComponent", }, - "name": "findTutorialPanel", + "name": "findComponent", "parameters": [ { + "description": "CSS selector", "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", + }, + { + "description": "Component's wrapper class", + "flags": { + "isOptional": false, + }, + "name": "ComponentClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "TutorialPanelWrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "description": "Returns the wrapper of the first Wizard that matches the specified CSS selector. -If no CSS selector is specified, returns the wrapper of the first Wizard. -If no matching Wizard is found, returns \`null\`.", - "inheritedFrom": { - "name": "ElementWrapper.findWizard", + "name": "findMenuDropdownType", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "TopNavigationMenuDropdownWrapper", }, - "name": "findWizard", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + }, + { + "name": "findPrimaryButtonType", + "parameters": [], "returnType": { - "name": "WizardWrapper | null", - "type": "union", + "isNullable": true, + "name": "ButtonWrapper", }, }, { @@ -70258,8 +73459,8 @@ If no matching Wizard is found, returns \`null\`.", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -70269,8 +73470,8 @@ If no matching Wizard is found, returns \`null\`.", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -70280,8 +73481,8 @@ If no matching Wizard is found, returns \`null\`.", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -70299,8 +73500,27 @@ If no matching Wizard is found, returns \`null\`.", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -70318,8 +73538,8 @@ If no matching Wizard is found, returns \`null\`.", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -70337,8 +73557,8 @@ If no matching Wizard is found, returns \`null\`.", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -70356,12 +73576,12 @@ If no matching Wizard is found, returns \`null\`.", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "TooltipWrapper", + "name": "TopNavigationUtilityWrapper", }, { "methods": [ @@ -70372,8 +73592,8 @@ If no matching Wizard is found, returns \`null\`.", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -70393,8 +73613,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -70412,8 +73632,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -70431,8 +73656,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -70450,8 +73680,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -70464,28 +73699,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -70501,12 +73736,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -70524,23 +73764,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -70548,67 +73792,225 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "name": "findGroupPairs", - "parameters": [], - "returnType": { - "name": "Array | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "name": "findGroupTitle", + "name": "findDescription", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { + "description": "Finds the disabled reason tooltip for a dropdown item. Returns null if no disabled item with \`disabledReason\` is highlighted.", "inheritedFrom": { - "name": "KeyValuePairsPairWrapper.findInfo", + "name": "ButtonDropdownWrapper.findDisabledReason", }, - "name": "findInfo", + "name": "findDisabledReason", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { + "description": "Finds an expandable category in the open dropdown by category id. Returns null if there is no open dropdown. + +This utility does not open the dropdown. To find dropdown items, call \`openDropdown()\` first.", "inheritedFrom": { - "name": "KeyValuePairsPairWrapper.findLabel", + "name": "ButtonDropdownWrapper.findExpandableCategoryById", }, - "name": "findLabel", + "name": "findExpandableCategoryById", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "id", + "typeName": "string", + }, + ], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "description": "Finds the highlighted item in the open dropdown. Returns null if there is no open dropdown. + +This utility does not open the dropdown. To find dropdown items, call \`openDropdown()\` first.", + "inheritedFrom": { + "name": "ButtonDropdownWrapper.findHighlightedItem", + }, + "name": "findHighlightedItem", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "description": "Finds an item in the open dropdown by item id. Returns null if there is no open dropdown. + +This utility does not open the dropdown. To find dropdown items, call \`openDropdown()\` first.", + "inheritedFrom": { + "name": "ButtonDropdownWrapper.findItemById", + }, + "name": "findItemById", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "id", + "typeName": "string", + }, + ], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { + "description": "Finds \`checked\` value of item in the open dropdown by item id. Returns null if there is no open dropdown or the item is not a checkbox item. + +This utility does not open the dropdown. To find dropdown items, call \`openDropdown()\` first.", "inheritedFrom": { - "name": "KeyValuePairsPairWrapper.findValue", + "name": "ButtonDropdownWrapper.findItemCheckedById", }, - "name": "findValue", + "name": "findItemCheckedById", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "id", + "typeName": "string", + }, + ], + "returnType": { + "isNullable": true, + "name": "string", + }, + }, + { + "description": "Finds all the items in the open dropdown. Returns empty array if there is no open dropdown. + +This utility does not open the dropdown. To find dropdown items, call \`openDropdown()\` first.", + "inheritedFrom": { + "name": "ButtonDropdownWrapper.findItems", + }, + "name": "findItems", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "ButtonDropdownWrapper.findMainAction", + }, + "name": "findMainAction", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ButtonWrapper", + }, + }, + { + "name": "findNativeButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLButtonElement", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "ButtonDropdownWrapper.findOpenDropdown", + }, + "name": "findOpenDropdown", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findTitle", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "ButtonDropdownWrapper.findTriggerButton", + }, + "name": "findTriggerButton", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ButtonWrapper", }, }, { @@ -70626,8 +74028,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -70637,8 +74039,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -70648,8 +74050,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -70667,8 +74069,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -70686,8 +74107,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -70705,8 +74126,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -70724,12 +74145,23 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", + }, + }, + { + "inheritedFrom": { + "name": "ButtonDropdownWrapper.openDropdown", + }, + "name": "openDropdown", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "void", }, }, ], - "name": "KeyValuePairsItemWrapper", + "name": "TopNavigationMenuDropdownWrapper", }, { "methods": [ @@ -70740,8 +74172,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -70761,8 +74193,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -70780,8 +74212,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -70799,8 +74236,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -70818,8 +74260,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -70832,28 +74279,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -70869,12 +74316,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -70892,23 +74344,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -70916,42 +74372,68 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "name": "findInfo", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "name": "findLabel", - "parameters": [], + "description": "Finds a visible tree view item by its ID.", + "name": "findItemById", + "parameters": [ + { + "description": "of the item to find", + "flags": { + "isOptional": false, + }, + "name": "id", + "typeName": "string", + }, + { + "defaultValue": "{}", + "description": "* expanded (optiona, boolean) - Use it to find the visible expanded or collapsed item.", + "flags": { + "isOptional": false, + }, + "name": "options", + "typeName": "{ expanded?: boolean | undefined; }", + }, + ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "TreeViewItemWrapper", }, }, { - "name": "findValue", - "parameters": [], + "description": "Finds all visible tree view items.", + "name": "findItems", + "parameters": [ + { + "defaultValue": "{}", + "description": "* expanded (optional, boolean) - Use it to find all visible expanded or collapsed items.", + "flags": { + "isOptional": false, + }, + "name": "options", + "typeName": "{ expanded?: boolean | undefined; }", + }, + ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "TreeViewItemWrapper", + }, + ], }, }, { @@ -70969,8 +74451,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -70980,8 +74462,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -70991,8 +74473,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -71010,8 +74492,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -71029,8 +74530,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -71048,8 +74549,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -71067,12 +74568,12 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "KeyValuePairsPairWrapper", + "name": "TreeViewWrapper", }, { "methods": [ @@ -71083,8 +74584,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -71104,8 +74605,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -71123,8 +74624,27 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], + }, + }, + { + "description": "Finds the actions slot of the tree view item.", + "name": "findActions", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { @@ -71142,8 +74662,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -71161,8 +74686,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -71175,28 +74705,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -71212,12 +74742,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -71235,23 +74770,78 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], + }, + }, + { + "description": "Finds a visible child item by its ID.", + "name": "findChildItemById", + "parameters": [ + { + "description": "of the item to find", + "flags": { + "isOptional": false, + }, + "name": "id", + "typeName": "string", + }, + { + "defaultValue": "{}", + "description": "* expanded (optional, boolean) - Use it to find the visible expanded or collapsed child item.", + "flags": { + "isOptional": false, + }, + "name": "options", + "typeName": "{ expanded?: boolean | undefined; }", + }, + ], + "returnType": { + "isNullable": true, + "name": "TreeViewItemWrapper", + }, + }, + { + "description": "Finds all visible child items of the tree view item.", + "name": "findChildItems", + "parameters": [ + { + "defaultValue": "{}", + "description": "* expanded (optional, boolean) - Use it to find all visible expanded or collapsed child items.", + "flags": { + "isOptional": false, + }, + "name": "options", + "typeName": "{ expanded?: boolean | undefined; }", + }, + ], + "returnType": { + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "TreeViewItemWrapper", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -71259,30 +74849,71 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "name": "findItems", + "description": "Finds the content slot of the tree view item.", + "name": "findContent", "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": true, + "name": "ElementWrapper", "typeArguments": [ { - "name": "KeyValuePairsItemWrapper", - "type": "reference", + "name": "HTMLElement", + }, + ], + }, + }, + { + "description": "Finds the icon slot of the tree view item.", + "name": "findIcon", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "description": "Finds the expand toggle of the tree view item.", + "name": "findItemToggle", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "description": "Finds the secondary content slot of the tree view item.", + "name": "findSecondaryContent", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", }, ], }, @@ -71302,8 +74933,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -71313,8 +74944,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -71324,8 +74955,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -71343,8 +74974,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -71362,8 +75012,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -71381,8 +75031,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -71400,12 +75050,12 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "KeyValuePairsWrapper", + "name": "TreeViewItemWrapper", }, { "methods": [ @@ -71416,8 +75066,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -71437,8 +75087,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -71456,14 +75106,19 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.findAll", + }, "name": "findAll", "parameters": [ { @@ -71475,8 +75130,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -71494,8 +75154,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -71508,28 +75173,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -71545,24 +75210,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns a focusable element that controls keyboard interactions.", - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findApplication", - }, - "name": "findApplication", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -71580,34 +75238,53 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findChart", + "name": "findCompletionScreenDescription", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, - "name": "findChart", + }, + { + "name": "findCompletionScreenTitle", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -71615,156 +75292,65 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "CommonChartWrapper.findDefaultFilter", - }, - "name": "findDefaultFilter", - "parameters": [], - "returnType": { - "name": "ChartFilterWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "CommonChartWrapper.findDetailPopover", - }, - "name": "findDetailPopover", - "parameters": [], - "returnType": { - "name": "ChartPopoverWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findFilterContainer", - }, - "name": "findFilterContainer", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findHighlightedSeries", - }, - "name": "findHighlightedSeries", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "CommonChartWrapper.findLegend", - }, - "name": "findLegend", - "parameters": [], - "returnType": { - "name": "ChartLegendWrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { - "description": "Returns an array of chart series. Note that thresholds count as series as well.", - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findSeries", - }, - "name": "findSeries", + "name": "findDismissButton", "parameters": [], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], + "isNullable": true, + "name": "ButtonWrapper", }, }, { - "inheritedFrom": { - "name": "CommonChartWrapper.findStatusContainer", - }, - "name": "findStatusContainer", + "name": "findDownloadLink", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "LinkWrapper", }, }, { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findXAxisTitle", - }, - "name": "findXAxisTitle", + "name": "findFeedbackLink", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "LinkWrapper", }, }, { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findXTicks", - }, - "name": "findXTicks", + "name": "findTaskList", "parameters": [], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "ElementWrapper", - "type": "reference", + "name": "TutorialTaskWrapper", }, ], }, }, { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findYAxisTitle", - }, - "name": "findYAxisTitle", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findYTicks", - }, - "name": "findYTicks", + "name": "findTutorials", "parameters": [], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { - "name": "ElementWrapper", - "type": "reference", + "name": "TutorialItemWrapper", }, ], }, @@ -71784,8 +75370,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -71795,8 +75381,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -71806,8 +75392,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -71825,8 +75411,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -71844,8 +75449,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -71863,8 +75468,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -71882,12 +75487,12 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "LineChartWrapper", + "name": "TutorialPanelWrapper", }, { "methods": [ @@ -71898,8 +75503,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -71919,8 +75524,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -71938,8 +75543,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -71957,8 +75567,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -71976,8 +75591,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -71990,28 +75610,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -72027,12 +75647,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -72050,23 +75675,27 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -72074,18 +75703,56 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", + }, + }, + { + "name": "findSteps", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], + }, + }, + { + "name": "findStepsTitle", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findTitle", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { @@ -72103,8 +75770,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -72114,8 +75781,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -72125,8 +75792,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLAnchorElement", - "type": "reference", + "isNullable": false, + "name": "ElementType", }, }, { @@ -72144,8 +75811,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -72163,8 +75849,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -72182,8 +75868,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -72201,12 +75887,12 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "LinkWrapper", + "name": "TutorialTaskWrapper", }, { "methods": [ @@ -72217,8 +75903,8 @@ Component's wrapper class", "name": "blur", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -72238,8 +75924,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -72257,19 +75943,29 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { "inheritedFrom": { - "name": "StructuredItemWrapper.findActions", + "name": "FormWrapper.findActions", }, "name": "findActions", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { @@ -72287,8 +75983,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -72306,8 +76007,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -72320,28 +76026,28 @@ If no matching component is found, returns an empty array.", "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "Array", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -72357,12 +76063,17 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], }, }, { @@ -72380,23 +76091,35 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "NewElementType", + }, + ], + }, + }, + { + "name": "findCancelButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ButtonWrapper", }, }, { "description": "Returns the component wrapper matching the specified selector. If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -72404,59 +76127,159 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": true, + "name": "Wrapper", }, }, { "inheritedFrom": { - "name": "StructuredItemWrapper.findContent", + "name": "FormWrapper.findContent", }, "name": "findContent", "parameters": [], "returnType": { + "isNullable": true, "name": "ElementWrapper", - "type": "reference", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "name": "findDragHandle", + "inheritedFrom": { + "name": "FormWrapper.findError", + }, + "name": "findError", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "inheritedFrom": { - "name": "StructuredItemWrapper.findIcon", + "name": "findHeader", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, - "name": "findIcon", + }, + { + "name": "findInfo", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, }, { - "inheritedFrom": { - "name": "StructuredItemWrapper.findSecondaryContent", + "description": "Returns a link for a given step number.", + "name": "findMenuNavigationLink", + "parameters": [ + { + "description": "1-based step index", + "flags": { + "isOptional": false, + }, + "name": "stepNumber", + "typeName": "number", + }, + { + "description": "[optional] State of the link. The method returns null if the specified step does not match the state. It can be + - "disabled": for disabled menu entries + - "active": for the active menu entry + - undefined: for any entry", + "flags": { + "isOptional": true, + }, + "name": "state", + "typeName": "string", + }, + ], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], }, - "name": "findSecondaryContent", + }, + { + "name": "findMenuNavigationLinks", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "Array", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], + }, + }, + { + "name": "findPreviousButton", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ButtonWrapper", + }, + }, + { + "name": "findPrimaryButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ButtonWrapper", + }, + }, + { + "name": "findSecondaryActions", + "parameters": [], + "returnType": { + "isNullable": true, + "name": "ElementWrapper", + "typeArguments": [ + { + "name": "HTMLElement", + }, + ], + }, + }, + { + "name": "findSkipToButton", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": true, + "name": "ButtonWrapper", }, }, { @@ -72474,8 +76297,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -72485,8 +76308,8 @@ Component's wrapper class", "name": "focus", "parameters": [], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -72496,9 +76319,9 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", - }, + "isNullable": false, + "name": "ElementType", + }, }, { "inheritedFrom": { @@ -72515,8 +76338,27 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "void", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.keydown", + }, + "name": "keydown", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "keyboardEventProps", + "typeName": "KeyboardEventInit", + }, + ], + "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -72534,8 +76376,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -72553,8 +76395,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "void", - "type": "intrinsic", }, }, { @@ -72572,47 +76414,22 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": true, + "name": "this", }, }, ], - "name": "ListItemWrapper", + "name": "WizardWrapper", }, + ], +} +`; + +exports[`Test-utils selectors definitions match the snapshot 1`] = ` +{ + "classes": [ { "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.blur", - }, - "name": "blur", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, { "inheritedFrom": { "name": "AbstractWrapper.find", @@ -72628,8 +76445,27 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "description": "Returns the action button. + +The action button is only rendered when the \`buttonText\` property is set.", + "name": "findActionButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ButtonWrapper", + }, + }, + { + "name": "findActionSlot", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -72647,8 +76483,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -72666,42 +76507,45 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", + "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. +If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", "inheritedFrom": { "name": "AbstractWrapper.findAllComponents", }, "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -72717,12 +76561,12 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -72740,23 +76584,21 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -72764,226 +76606,386 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": false, + "name": "Wrapper", }, }, { - "description": "Returns an item for a given id.", - "name": "findItemById", + "name": "findContent", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "description": "Returns the dismiss button. + +The dismiss button is only rendered when the \`dismissible\` property is set to \`true\`.", + "name": "findDismissButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ButtonWrapper", + }, + }, + { + "name": "findHeader", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "description": "Returns the container node of the component.", + "name": "findRootElement", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.getElement", + }, + "name": "getElement", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "string", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.matches", + }, + "name": "matches", "parameters": [ { "flags": { "isOptional": false, }, - "name": "id", + "name": "selector", "typeName": "string", }, ], "returnType": { - "name": "ListItemWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns an item for a given index.", - "name": "findItemByIndex", + "inheritedFrom": { + "name": "AbstractWrapper.toSelector", + }, + "name": "toSelector", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "string", + }, + }, + ], + "name": "AlertWrapper", + }, + { + "methods": [ + { + "inheritedFrom": { + "name": "AbstractWrapper.find", + }, + "name": "find", "parameters": [ { - "description": " -1-based index of the item to return. -", "flags": { "isOptional": false, }, - "name": "index", - "typeName": "number", + "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "ListItemWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns all list items.", - "name": "findItems", + "name": "findActiveAnchor", "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": false, + "name": "AnchorItemWrapper", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.findAll", + }, + "name": "findAll", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "selector", + "typeName": "string", + }, + ], + "returnType": { + "isNullable": false, + "name": "MultiElementWrapper", "typeArguments": [ { - "name": "ListItemWrapper", - "type": "reference", + "name": "ElementWrapper", }, ], }, }, { "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", + "name": "AbstractWrapper.findAllByClassName", }, - "name": "fireEvent", + "name": "findAllByClassName", "parameters": [ { "flags": { "isOptional": false, }, - "name": "event", - "typeName": "Event", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { + "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. +If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", "inheritedFrom": { - "name": "AbstractWrapper.focus", + "name": "AbstractWrapper.findAllComponents", }, - "name": "focus", - "parameters": [], + "name": "findAllComponents", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "ComponentClass", + "typeName": "ComponentWrapperClass", + }, + { + "description": "CSS Selector", + "flags": { + "isOptional": true, + }, + "name": "selector", + "typeName": "string", + }, + ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "Wrapper", + }, + ], }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], + "name": "findAnchorByIndex", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "index", + "typeName": "number", + }, + ], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "AnchorItemWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", + "name": "findAnchorLinkByHref", "parameters": [ { "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "href", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findAnchorNavigation", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findAnchorNavigationList", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findAnchors", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "AnchorItemWrapper", + }, + ], }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keypress", + "name": "AbstractWrapper.findAny", }, - "name": "keypress", + "name": "findAny", "parameters": [ { "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "selectors", + "typeName": "Array", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keyup", + "name": "AbstractWrapper.findByClassName", }, - "name": "keyup", + "name": "findByClassName", "parameters": [ { "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { + "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { - "name": "AbstractWrapper.matches", + "name": "AbstractWrapper.findComponent", }, - "name": "matches", + "name": "findComponent", "parameters": [ { + "description": "CSS selector", "flags": { "isOptional": false, }, "name": "selector", "typeName": "string", }, + { + "description": "Component's wrapper class", + "flags": { + "isOptional": false, + }, + "name": "ComponentClass", + "typeName": "WrapperClass", + }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": false, + "name": "Wrapper", }, }, - ], - "name": "ListWrapper", - }, - { - "methods": [ { "inheritedFrom": { - "name": "AbstractWrapper.blur", + "name": "AbstractWrapper.getElement", }, - "name": "blur", + "name": "getElement", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "string", }, }, { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", "inheritedFrom": { - "name": "AbstractWrapper.click", + "name": "AbstractWrapper.matches", }, - "name": "click", + "name": "matches", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "params", - "typeName": "MouseEventInit", + "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.toSelector", + }, + "name": "toSelector", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "string", }, }, + ], + "name": "AnchorNavigationWrapper", + }, + { + "methods": [ { "inheritedFrom": { "name": "AbstractWrapper.find", @@ -72999,8 +77001,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -73018,8 +77020,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -73037,42 +77044,45 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", + "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. +If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", "inheritedFrom": { "name": "AbstractWrapper.findAllComponents", }, "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -73088,12 +77098,12 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -73111,23 +77121,21 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -73135,48 +77143,41 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": false, + "name": "Wrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], + "name": "findInfo", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.focus", + "name": "findLink", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", }, - "name": "focus", + }, + { + "name": "findText", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -73186,123 +77187,45 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "string", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keydown", + "name": "AbstractWrapper.matches", }, - "name": "keydown", + "name": "matches", "parameters": [ { "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keyup", - }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.matches", + "name": "AbstractWrapper.toSelector", }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], + "name": "toSelector", + "parameters": [], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": false, + "name": "string", }, }, ], - "name": "LiveRegionWrapper", + "name": "AnchorItemWrapper", }, { "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.blur", - }, - "name": "blur", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, { "inheritedFrom": { "name": "AbstractWrapper.find", @@ -73318,8 +77241,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -73337,8 +77260,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -73356,42 +77284,45 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", + "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. +If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", "inheritedFrom": { "name": "AbstractWrapper.findAllComponents", }, "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -73407,21 +77338,12 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns a focusable element that controls keyboard interactions.", - "name": "findApplication", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -73439,31 +77361,21 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findChart", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -73471,167 +77383,73 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "CommonChartWrapper.findDefaultFilter", - }, - "name": "findDefaultFilter", - "parameters": [], - "returnType": { - "name": "ChartFilterWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "CommonChartWrapper.findDetailPopover", - }, - "name": "findDetailPopover", - "parameters": [], - "returnType": { - "name": "ChartPopoverWrapper | null", - "type": "union", - }, - }, - { - "name": "findFilterContainer", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findHighlightedSeries", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "CommonChartWrapper.findLegend", - }, - "name": "findLegend", - "parameters": [], - "returnType": { - "name": "ChartLegendWrapper | null", - "type": "union", + "isNullable": false, + "name": "Wrapper", }, }, { - "description": "Returns an array of chart series. Note that thresholds count as series as well.", - "name": "findSeries", + "name": "findContent", "parameters": [], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "ElementWrapper", }, }, { - "inheritedFrom": { - "name": "CommonChartWrapper.findStatusContainer", - }, - "name": "findStatusContainer", + "name": "findDismissButton", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ButtonWrapper", }, }, { - "name": "findXAxisTitle", + "name": "findFinishButton", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ButtonWrapper", }, }, { - "name": "findXTicks", + "name": "findHeader", "parameters": [], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "ElementWrapper", }, }, { - "name": "findYAxisTitle", + "name": "findNextButton", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ButtonWrapper", }, }, { - "name": "findYTicks", + "name": "findPreviousButton", "parameters": [], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ButtonWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", + "name": "findStepCounter", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -73641,72 +77459,50 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "string", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keypress", + "name": "AbstractWrapper.matches", }, - "name": "keypress", + "name": "matches", "parameters": [ { "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keyup", + "name": "AbstractWrapper.toSelector", }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], + "name": "toSelector", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "string", }, }, + ], + "name": "AnnotationWrapper", + }, + { + "methods": [ { "inheritedFrom": { - "name": "AbstractWrapper.matches", + "name": "AbstractWrapper.find", }, - "name": "matches", + "name": "find", "parameters": [ { "flags": { @@ -73717,64 +77513,32 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, - ], - "name": "BaseCartesianChartWrapper", - }, - { - "methods": [ { - "inheritedFrom": { - "name": "AbstractWrapper.blur", - }, - "name": "blur", + "name": "findActiveDrawer", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], + "name": "findActiveDrawerCloseButton", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], + "name": "findActiveDrawerResizeHandle", + "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -73792,8 +77556,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -73811,42 +77580,45 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", + "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. +If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", "inheritedFrom": { "name": "AbstractWrapper.findAllComponents", }, "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -73862,39 +77634,20 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns a focusable element that controls keyboard interactions.", - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findApplication", - }, - "name": "findApplication", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns an array of bar groups, which are used for mouse navigation if a chart contains bar series.", - "name": "findBarGroups", + "name": "findBreadcrumbs", "parameters": [], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -73912,34 +77665,21 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findChart", - }, - "name": "findChart", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -73947,263 +77687,230 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": false, + "name": "Wrapper", }, }, { - "inheritedFrom": { - "name": "CommonChartWrapper.findDefaultFilter", - }, - "name": "findDefaultFilter", + "name": "findContentRegion", "parameters": [], "returnType": { - "name": "ChartFilterWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "inheritedFrom": { - "name": "CommonChartWrapper.findDetailPopover", - }, - "name": "findDetailPopover", + "name": "findDrawersOverflowTrigger", "parameters": [], "returnType": { - "name": "ChartPopoverWrapper | null", - "type": "union", + "isNullable": false, + "name": "ButtonDropdownWrapper", }, }, { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findFilterContainer", - }, - "name": "findFilterContainer", + "name": "findDrawersTriggers", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findHighlightedSeries", + "description": "Finds a drawer trigger by the given id.", + "name": "findDrawerTriggerById", + "parameters": [ + { + "description": "id of the trigger to find", + "flags": { + "isOptional": false, + }, + "name": "id", + "typeName": "string", + }, + { + "defaultValue": "{}", + "description": "* hasBadge (boolean) - If provided, only finds drawers with the badge or without badge respectively", + "flags": { + "isOptional": false, + }, + "name": "options", + "typeName": "{ hasBadge?: boolean | undefined; }", + }, + ], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", }, - "name": "findHighlightedSeries", + }, + { + "name": "findDrawerTriggerTooltip", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "inheritedFrom": { - "name": "CommonChartWrapper.findLegend", - }, - "name": "findLegend", + "name": "findNavigation", "parameters": [], "returnType": { - "name": "ChartLegendWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns an array of chart series. Note that thresholds count as series as well.", - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findSeries", - }, - "name": "findSeries", + "name": "findNavigationClose", "parameters": [], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "ElementWrapper", }, }, { - "inheritedFrom": { - "name": "CommonChartWrapper.findStatusContainer", - }, - "name": "findStatusContainer", + "name": "findNavigationToggle", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findXAxisTitle", - }, - "name": "findXAxisTitle", + "name": "findNotifications", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findXTicks", - }, - "name": "findXTicks", + "name": "findOpenNavigationPanel", "parameters": [], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "ElementWrapper", }, }, { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findYAxisTitle", - }, - "name": "findYAxisTitle", + "name": "findOpenToolsPanel", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findYTicks", - }, - "name": "findYTicks", + "name": "findSplitPanel", "parameters": [], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "SplitPanelWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], + "name": "findSplitPanelOpenButton", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.focus", + "name": "findToolbar", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", }, - "name": "focus", + }, + { + "name": "findTools", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", + "name": "findToolsClose", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", }, - "name": "getElement", + }, + { + "name": "findToolsToggle", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keydown", + "name": "AbstractWrapper.getElement", }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], + "name": "getElement", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "string", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keypress", + "name": "AbstractWrapper.matches", }, - "name": "keypress", + "name": "matches", "parameters": [ { "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keyup", + "name": "AbstractWrapper.toSelector", }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], + "name": "toSelector", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "string", }, }, + ], + "name": "AppLayoutWrapper", + }, + { + "methods": [ { "inheritedFrom": { - "name": "AbstractWrapper.matches", + "name": "AbstractWrapper.find", }, - "name": "matches", + "name": "find", "parameters": [ { "flags": { @@ -74214,64 +77921,41 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, - ], - "name": "MixedLineBarChartWrapper", - }, - { - "methods": [ { "inheritedFrom": { - "name": "AbstractWrapper.blur", + "name": "AppLayoutWrapper.findActiveDrawer", }, - "name": "blur", + "name": "findActiveDrawer", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", "inheritedFrom": { - "name": "AbstractWrapper.click", + "name": "AppLayoutWrapper.findActiveDrawerCloseButton", }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], + "name": "findActiveDrawerCloseButton", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.find", + "name": "AppLayoutWrapper.findActiveDrawerResizeHandle", }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], + "name": "findActiveDrawerResizeHandle", + "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -74289,8 +77973,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -74308,42 +77997,45 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", + "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. +If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", "inheritedFrom": { "name": "AbstractWrapper.findAllComponents", }, "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -74359,12 +78051,23 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "inheritedFrom": { + "name": "AppLayoutWrapper.findBreadcrumbs", + }, + "name": "findBreadcrumbs", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -74382,23 +78085,21 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -74406,270 +78107,276 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": false, + "name": "Wrapper", }, }, { - "name": "findContent", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", + "inheritedFrom": { + "name": "AppLayoutWrapper.findContentRegion", }, - }, - { - "name": "findDismissButton", + "name": "findContentRegion", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { - "name": "findFooter", + "inheritedFrom": { + "name": "AppLayoutWrapper.findDrawersOverflowTrigger", + }, + "name": "findDrawersOverflowTrigger", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ButtonDropdownWrapper", }, }, { - "name": "findHeader", + "inheritedFrom": { + "name": "AppLayoutWrapper.findDrawersTriggers", + }, + "name": "findDrawersTriggers", "parameters": [], "returnType": { - "name": "ElementWrapper", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { + "description": "Finds a drawer trigger by the given id.", "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", + "name": "AppLayoutWrapper.findDrawerTriggerById", }, - "name": "fireEvent", + "name": "findDrawerTriggerById", "parameters": [ { + "description": "id of the trigger to find", "flags": { "isOptional": false, }, - "name": "event", - "typeName": "Event", + "name": "id", + "typeName": "string", + }, + { + "defaultValue": "{}", + "description": "* hasBadge (boolean) - If provided, only finds drawers with the badge or without badge respectively", + "flags": { + "isOptional": false, + }, + "name": "options", + "typeName": "{ hasBadge?: boolean | undefined; }", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.focus", + "name": "AppLayoutWrapper.findDrawerTriggerTooltip", }, - "name": "focus", + "name": "findDrawerTriggerTooltip", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.getElement", + "name": "AppLayoutWrapper.findNavigation", }, - "name": "getElement", + "name": "findNavigation", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "name": "isVisible", + "inheritedFrom": { + "name": "AppLayoutWrapper.findNavigationClose", + }, + "name": "findNavigationClose", "parameters": [], "returnType": { - "name": "boolean", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keydown", + "name": "AppLayoutWrapper.findNavigationToggle", }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], + "name": "findNavigationToggle", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keypress", + "name": "AppLayoutWrapper.findNotifications", }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], + "name": "findNotifications", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keyup", + "name": "AppLayoutWrapper.findOpenNavigationPanel", }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], + "name": "findOpenNavigationPanel", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.matches", + "name": "AppLayoutWrapper.findOpenToolsPanel", }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], + "name": "findOpenToolsPanel", + "parameters": [], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, - ], - "name": "ModalWrapper", - }, - { - "methods": [ { "inheritedFrom": { - "name": "AbstractWrapper.blur", + "name": "AppLayoutWrapper.findSplitPanel", }, - "name": "blur", + "name": "findSplitPanel", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "SplitPanelWrapper", }, }, { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", "inheritedFrom": { - "name": "AbstractWrapper.click", + "name": "AppLayoutWrapper.findSplitPanelOpenButton", }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], + "name": "findSplitPanelOpenButton", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Selects all options by triggering corresponding events on the element that selects or deselects all options in Multiselect when using the \`enableSelectAll\` flag. -This utility does not open the dropdown of the given select. You will need to call \`openDropdown\` first in your test. - -Example: -\`\`\` -wrapper.openDropdown(); -wrapper.clickSelectAll(); -\`\`\` -", "inheritedFrom": { - "name": "DropdownHostComponentWrapper.clickSelectAll", + "name": "AppLayoutWrapper.findToolbar", }, - "name": "clickSelectAll", - "parameters": [ - { - "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], + "name": "findToolbar", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "", "inheritedFrom": { - "name": "DropdownHostComponentWrapper.closeDropdown", + "name": "AppLayoutWrapper.findTools", }, - "name": "closeDropdown", + "name": "findTools", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "inheritedFrom": { + "name": "AppLayoutWrapper.findToolsClose", + }, + "name": "findToolsClose", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "inheritedFrom": { + "name": "AppLayoutWrapper.findToolsToggle", + }, + "name": "findToolsToggle", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.getElement", + }, + "name": "getElement", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "string", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.matches", + }, + "name": "matches", "parameters": [ { - "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", "flags": { "isOptional": false, }, - "name": "options", + "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.toSelector", + }, + "name": "toSelector", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "string", }, }, + ], + "name": "AppLayoutToolbarWrapper", + }, + { + "methods": [ { "inheritedFrom": { "name": "AbstractWrapper.find", @@ -74685,8 +78392,8 @@ wrapper.clickSelectAll(); }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -74704,12 +78411,17 @@ wrapper.clickSelectAll(); }, ], "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "inheritedFrom": { + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], + }, + }, + { + "inheritedFrom": { "name": "AbstractWrapper.findAllByClassName", }, "name": "findAllByClassName", @@ -74723,42 +78435,45 @@ wrapper.clickSelectAll(); }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", + "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. +If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", "inheritedFrom": { "name": "AbstractWrapper.findAllComponents", }, "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -74774,12 +78489,24 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "description": "Returns a focusable element that controls keyboard interactions.", + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findApplication", + }, + "name": "findApplication", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -74797,23 +78524,29 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + "name": "findChart", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -74821,431 +78554,470 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": false, + "name": "Wrapper", }, }, { - "description": "", "inheritedFrom": { - "name": "DropdownHostComponentWrapper.findDropdown", + "name": "CommonChartWrapper.findDefaultFilter", }, - "name": "findDropdown", - "parameters": [ - { - "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], + "name": "findDefaultFilter", + "parameters": [], "returnType": { - "name": "DropdownContentWrapper", - "type": "reference", + "isNullable": false, + "name": "ChartFilterWrapper", }, }, { - "description": "", - "name": "findErrorRecoveryButton", - "parameters": [ - { - "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], + "inheritedFrom": { + "name": "CommonChartWrapper.findDetailPopover", + }, + "name": "findDetailPopover", + "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ChartPopoverWrapper", }, }, { - "description": "Returns the input that is used for filtering.", - "name": "findFilteringInput", - "parameters": [ - { - "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findFilterContainer", + }, + "name": "findFilterContainer", + "parameters": [], "returnType": { - "name": "InputWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "name": "findInlineLabel", + "name": "findHighlightedSeries", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "name": "findPlaceholder", + "inheritedFrom": { + "name": "CommonChartWrapper.findLegend", + }, + "name": "findLegend", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ChartLegendWrapper", }, }, { - "description": "", - "name": "findStatusIndicator", - "parameters": [ - { - "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], + "description": "Returns an array of chart series. Note that thresholds count as series as well.", + "name": "findSeries", + "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns a token.", - "name": "findToken", - "parameters": [ - { - "description": " -1-based index of the token to return -", - "flags": { - "isOptional": false, - }, - "name": "tokenIndex", - "typeName": "number", - }, - ], + "inheritedFrom": { + "name": "CommonChartWrapper.findStatusContainer", + }, + "name": "findStatusContainer", + "parameters": [], "returnType": { - "name": "TokenWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns a token toggle button.", - "name": "findTokenToggle", + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findXAxisTitle", + }, + "name": "findXAxisTitle", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "name": "findTokens", + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findXTicks", + }, + "name": "findXTicks", "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", "typeArguments": [ { - "name": "TokenWrapper", - "type": "reference", + "name": "ElementWrapper", }, ], }, }, { - "name": "findTrigger", + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findYAxisTitle", + }, + "name": "findYAxisTitle", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", + "name": "BaseCartesianChartWrapper.findYTicks", }, - "name": "fireEvent", + "name": "findYTicks", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.getElement", + }, + "name": "getElement", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "string", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.matches", + }, + "name": "matches", "parameters": [ { "flags": { "isOptional": false, }, - "name": "event", - "typeName": "Event", + "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.focus", + "name": "AbstractWrapper.toSelector", }, - "name": "focus", + "name": "toSelector", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "string", }, }, + ], + "name": "AreaChartWrapper", + }, + { + "methods": [ { "inheritedFrom": { - "name": "AbstractWrapper.getElement", + "name": "AbstractWrapper.find", }, - "name": "getElement", + "name": "find", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "selector", + "typeName": "string", + }, + ], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findAddButton", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ButtonWrapper", }, }, { - "name": "isDisabled", + "name": "findAdditionalInfo", "parameters": [], "returnType": { - "name": "boolean", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keydown", + "name": "AbstractWrapper.findAll", }, - "name": "keydown", + "name": "findAll", "parameters": [ { "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keypress", + "name": "AbstractWrapper.findAllByClassName", }, - "name": "keypress", + "name": "findAllByClassName", "parameters": [ { "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { + "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. +If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", "inheritedFrom": { - "name": "AbstractWrapper.keyup", + "name": "AbstractWrapper.findAllComponents", }, - "name": "keyup", + "name": "findAllComponents", "parameters": [ { "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "ComponentClass", + "typeName": "ComponentWrapperClass", + }, + { + "description": "CSS Selector", + "flags": { + "isOptional": true, + }, + "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "Wrapper", + }, + ], }, }, { "inheritedFrom": { - "name": "AbstractWrapper.matches", + "name": "AbstractWrapper.findAny", }, - "name": "matches", + "name": "findAny", "parameters": [ { "flags": { "isOptional": false, }, - "name": "selector", - "typeName": "string", + "name": "selectors", + "typeName": "Array", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { "inheritedFrom": { - "name": "DropdownHostComponentWrapper.openDropdown", + "name": "AbstractWrapper.findByClassName", }, - "name": "openDropdown", - "parameters": [], + "name": "findByClassName", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "className", + "typeName": "string", + }, + ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Selects an option for the given index by triggering corresponding events. -This utility does not open the dropdown of the given select. You will need to call \`openDropdown\` first in your test. -On selection the dropdown will close automatically. + "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Example: -\`\`\` -wrapper.openDropdown(); -wrapper.selectOption(1); -\`\`\` -", +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { - "name": "DropdownHostComponentWrapper.selectOption", + "name": "AbstractWrapper.findComponent", }, - "name": "selectOption", + "name": "findComponent", "parameters": [ { - "description": " -1-based index of the option to select", + "description": "CSS selector", "flags": { "isOptional": false, }, - "name": "index", - "typeName": "number", + "name": "selector", + "typeName": "string", }, { - "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, - "name": "options", + "name": "ComponentClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "Wrapper", }, }, { - "description": "Selects an option for the given value by triggering corresponding events. -This utility does not open the dropdown of the given select. You will need to call \`openDropdown\` first in your test. -On selection the dropdown will close automatically. - -Example: -\`\`\` -wrapper.openDropdown(); -wrapper.selectOptionByValue('option_1'); -\`\`\` -", - "inheritedFrom": { - "name": "DropdownHostComponentWrapper.selectOptionByValue", + "name": "findEmptySlot", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", }, - "name": "selectOptionByValue", + }, + { + "description": "Returns a row for a given index.", + "name": "findRow", "parameters": [ { - "description": " -value of the option", - "flags": { - "isOptional": false, - }, - "name": "value", - "typeName": "string", - }, - { - "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", + "description": "1-based row index", "flags": { "isOptional": false, }, - "name": "options", + "name": "row", + "typeName": "number", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "AttributeEditorRowWrapper", + }, + }, + { + "description": "Returns all rows. + +To find a specific row use the \`findRow(n)\` function as chaining \`findRows().get(n)\` can return unexpected results.", + "name": "findRows", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "AttributeEditorRowWrapper", + }, + ], }, }, - ], - "name": "MultiselectWrapper", - }, - { - "methods": [ { "inheritedFrom": { - "name": "AbstractWrapper.blur", + "name": "AbstractWrapper.getElement", }, - "name": "blur", + "name": "getElement", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "string", }, }, { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", "inheritedFrom": { - "name": "AbstractWrapper.click", + "name": "AbstractWrapper.matches", }, - "name": "click", + "name": "matches", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "params", - "typeName": "MouseEventInit", + "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.toSelector", + }, + "name": "toSelector", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "string", }, }, + ], + "name": "AttributeEditorWrapper", + }, + { + "methods": [ { "inheritedFrom": { "name": "AbstractWrapper.find", @@ -75261,8 +79033,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -75280,8 +79052,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -75299,42 +79076,45 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", + "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. +If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", "inheritedFrom": { "name": "AbstractWrapper.findAllComponents", }, "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -75350,12 +79130,12 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -75373,23 +79153,21 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -75397,106 +79175,65 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "name": "findCurrentPage", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", + "isNullable": false, + "name": "Wrapper", }, }, { - "name": "findNextPageButton", + "name": "findCustomAction", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { - "description": "Returns a page number for a given index.", - "name": "findPageNumberByIndex", + "description": "Returns a field for a given index", + "name": "findField", "parameters": [ { - "description": " -1-based index of the page number to return. -", + "description": "1-based column index", "flags": { "isOptional": false, }, - "name": "index", + "name": "column", "typeName": "number", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "FormFieldWrapper", }, }, { - "name": "findPageNumbers", + "description": "Returns all fields. Fields are supplied in the \`definition\` property of the component.", + "name": "findFields", "parameters": [], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", "typeArguments": [ { - "name": "ElementWrapper", - "type": "reference", + "name": "FormFieldWrapper", }, ], }, }, { - "name": "findPreviousPageButton", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", + "name": "findRemoveButton", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ButtonWrapper", }, }, { @@ -75506,73 +79243,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", - }, - }, - { - "name": "isDisabled", - "parameters": [], - "returnType": { - "name": "boolean", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keyup", - }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "string", }, }, { @@ -75590,47 +79262,26 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, - ], - "name": "PaginationWrapper", - }, - { - "methods": [ { "inheritedFrom": { - "name": "AbstractWrapper.blur", + "name": "AbstractWrapper.toSelector", }, - "name": "blur", + "name": "toSelector", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "string", }, }, + ], + "name": "AttributeEditorRowWrapper", + }, + { + "methods": [ { "inheritedFrom": { "name": "AbstractWrapper.find", @@ -75646,8 +79297,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -75665,8 +79316,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -75684,42 +79340,45 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", + "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. +If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", "inheritedFrom": { "name": "AbstractWrapper.findAllComponents", }, "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -75735,21 +79394,12 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns a focusable element that controls keyboard interactions.", - "name": "findApplication", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -75767,31 +79417,32 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "name": "findChart", + "inheritedFrom": { + "name": "InputWrapper.findClearButton", + }, + "name": "findClearButton", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -75799,220 +79450,119 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "CommonChartWrapper.findDefaultFilter", - }, - "name": "findDefaultFilter", - "parameters": [], - "returnType": { - "name": "ChartFilterWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "CommonChartWrapper.findDetailPopover", - }, - "name": "findDetailPopover", - "parameters": [], - "returnType": { - "name": "ChartPopoverWrapper | null", - "type": "union", - }, - }, - { - "name": "findFilterContainer", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findHighlightedSegment", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findHighlightedSegmentLabel", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findInnerContent", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "CommonChartWrapper.findLegend", - }, - "name": "findLegend", - "parameters": [], - "returnType": { - "name": "ChartLegendWrapper | null", - "type": "union", - }, - }, - { - "name": "findSegmentLabels", - "parameters": [], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "name": "findSegments", - "parameters": [], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "CommonChartWrapper.findStatusContainer", - }, - "name": "findStatusContainer", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "Wrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", + "name": "findDropdown", "parameters": [ { + "defaultValue": "{ + expandToViewport: false + }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", "flags": { "isOptional": false, }, - "name": "event", - "typeName": "Event", + "name": "options", + "typeName": "{ expandToViewport: boolean; }", }, ], "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "AutosuggestDropdownWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", + "name": "findEnteredTextOption", "parameters": [ { + "defaultValue": "{ + expandToViewport: false + }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "options", + "typeName": "{ expandToViewport: boolean; }", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", + "name": "findErrorRecoveryButton", "parameters": [ { + "defaultValue": "{ + expandToViewport: false + }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "options", + "typeName": "{ expandToViewport: boolean; }", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keyup", + "name": "BaseInputWrapper.findNativeInput", }, - "name": "keyup", + "name": "findNativeInput", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findStatusIndicator", "parameters": [ { + "defaultValue": "{ + expandToViewport: false + }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "options", + "typeName": "{ expandToViewport: boolean; }", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.getElement", + }, + "name": "getElement", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "string", }, }, { @@ -76030,47 +79580,26 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, - ], - "name": "PieChartWrapper", - }, - { - "methods": [ { "inheritedFrom": { - "name": "AbstractWrapper.blur", + "name": "AbstractWrapper.toSelector", }, - "name": "blur", + "name": "toSelector", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "string", }, }, + ], + "name": "AutosuggestWrapper", + }, + { + "methods": [ { "inheritedFrom": { "name": "AbstractWrapper.find", @@ -76086,8 +79615,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -76105,8 +79634,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -76124,42 +79658,45 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", + "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. +If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", "inheritedFrom": { "name": "AbstractWrapper.findAllComponents", }, "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -76175,12 +79712,12 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -76198,23 +79735,21 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -76222,187 +79757,173 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": false, + "name": "Wrapper", }, }, { - "description": "", - "name": "findContent", - "parameters": [ - { - "defaultValue": "{ renderWithPortal: false }", - "description": " - -* renderWithPortal (boolean) - Flag to find the content when the popover is rendered with a portal -", - "flags": { - "isOptional": false, + "description": "Returns all the selected options.", + "name": "findDisabledOptions", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "OptionWrapper", }, - "name": "options", - }, - ], + ], + }, + }, + { + "name": "findFooterRegion", + "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "", - "name": "findDismissButton", - "parameters": [ - { - "defaultValue": "{ renderWithPortal: false }", - "description": " - -* renderWithPortal (boolean) - Flag to find the dismiss button when the popover is rendered with a portal -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], + "name": "findHighlightedAriaLiveRegion", + "parameters": [], "returnType": { - "name": "ButtonWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "", - "name": "findHeader", - "parameters": [ - { - "defaultValue": "{ renderWithPortal: false }", - "description": " - -* renderWithPortal (boolean) - Flag to find the header when the popover is rendered with a portal -", - "flags": { - "isOptional": false, + "description": "Returns highlighted text fragments from all of the options. +Options get highlighted when they match the value of the input field.", + "name": "findHighlightedMatches", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", }, - "name": "options", - }, - ], + ], + }, + }, + { + "name": "findHighlightedOption", + "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "OptionWrapper", }, }, { - "name": "findTrigger", + "name": "findOpenDropdown", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", + "description": "Returns an option from the dropdown.", + "name": "findOption", "parameters": [ { + "description": "1-based index of the option to select.", "flags": { "isOptional": false, }, - "name": "event", - "typeName": "Event", + "name": "optionIndex", + "typeName": "number", }, ], "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "OptionWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", + "description": "Returns an option from the autosuggest by it's value", + "name": "findOptionByValue", "parameters": [ { + "description": "The 'value' of the option.", "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "value", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "OptionWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", + "description": "Returns an option from the dropdown.", + "name": "findOptionInGroup", "parameters": [ { + "description": "1-based index of the group to select an option in.", "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "groupIndex", + "typeName": "number", + }, + { + "description": "1-based index of the option to select.", + "flags": { + "isOptional": false, + }, + "name": "optionIndex", + "typeName": "number", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "OptionWrapper", + }, + }, + { + "name": "findOptions", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "OptionWrapper", + }, + ], + }, + }, + { + "description": "Use this element to scroll through the list of options", + "name": "findOptionsContainer", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keyup", + "name": "AbstractWrapper.getElement", }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], + "name": "getElement", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "string", }, }, { @@ -76420,47 +79941,26 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, - ], - "name": "PopoverWrapper", - }, - { - "methods": [ { "inheritedFrom": { - "name": "AbstractWrapper.blur", + "name": "AbstractWrapper.toSelector", }, - "name": "blur", + "name": "toSelector", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "string", }, }, + ], + "name": "AutosuggestDropdownWrapper", + }, + { + "methods": [ { "inheritedFrom": { "name": "AbstractWrapper.find", @@ -76476,16 +79976,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findAdditionalInfo", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -76503,8 +79995,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -76522,42 +80019,45 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", + "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. +If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", "inheritedFrom": { "name": "AbstractWrapper.findAllComponents", }, "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -76573,12 +80073,12 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -76596,23 +80096,21 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -76620,86 +80118,17 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "name": "findPercentageText", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findResultButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the result text.", - "name": "findResultText", - "parameters": [ - { - "description": " - - -[optional] Status of the result text. It can be aither "error" or "succes". -If not specified, the method returns the result text that is currently displayed, independently of the result status. -", - "flags": { - "isOptional": true, - }, - "name": "status", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "Wrapper", }, }, { @@ -76709,65 +80138,8 @@ If not specified, the method returns the result text that is currently displayed "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keyup", - }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "string", }, }, { @@ -76785,47 +80157,26 @@ If not specified, the method returns the result text that is currently displayed }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, - ], - "name": "ProgressBarWrapper", - }, - { - "methods": [ { "inheritedFrom": { - "name": "AbstractWrapper.blur", + "name": "AbstractWrapper.toSelector", }, - "name": "blur", + "name": "toSelector", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "string", }, }, + ], + "name": "BadgeWrapper", + }, + { + "methods": [ { "inheritedFrom": { "name": "AbstractWrapper.find", @@ -76841,23 +80192,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Finds the action button. Note that, despite its typings, this may return null.", - "name": "findActionButton", - "parameters": [], - "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "HTMLButtonElement", - "type": "reference", - }, - ], }, }, { @@ -76875,8 +80211,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -76894,42 +80235,45 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", + "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. +If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", "inheritedFrom": { "name": "AbstractWrapper.findAllComponents", }, "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -76945,12 +80289,41 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "description": "Returns a focusable element that controls keyboard interactions.", + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findApplication", + }, + "name": "findApplication", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "description": "Returns an array of bar groups, which are used for mouse navigation if a chart contains bar series.", + "inheritedFrom": { + "name": "MixedLineBarChartWrapper.findBarGroups", + }, + "name": "findBarGroups", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -76968,23 +80341,32 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findChart", + }, + "name": "findChart", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -76992,172 +80374,165 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": false, + "name": "Wrapper", }, }, { - "name": "findCustomPrimaryAction", + "inheritedFrom": { + "name": "CommonChartWrapper.findDefaultFilter", + }, + "name": "findDefaultFilter", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ChartFilterWrapper", }, }, { - "name": "findNativeTextarea", + "inheritedFrom": { + "name": "CommonChartWrapper.findDetailPopover", + }, + "name": "findDetailPopover", "parameters": [], "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "HTMLTextAreaElement", - "type": "reference", - }, - ], + "isNullable": false, + "name": "ChartPopoverWrapper", }, }, { - "description": "Finds the secondary actions slot. Note that, despite its typings, this may return null.", - "name": "findSecondaryActions", + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findFilterContainer", + }, + "name": "findFilterContainer", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "HTMLDivElement", - "type": "reference", - }, - ], }, }, { - "name": "findSecondaryContent", + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findHighlightedSeries", + }, + "name": "findHighlightedSeries", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", + "name": "CommonChartWrapper.findLegend", }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], + "name": "findLegend", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ChartLegendWrapper", }, }, { + "description": "Returns an array of chart series. Note that thresholds count as series as well.", "inheritedFrom": { - "name": "AbstractWrapper.focus", + "name": "BaseCartesianChartWrapper.findSeries", }, - "name": "focus", + "name": "findSeries", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { "inheritedFrom": { - "name": "AbstractWrapper.getElement", + "name": "CommonChartWrapper.findStatusContainer", }, - "name": "getElement", + "name": "findStatusContainer", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Gets the value of the component. -Returns the current value of the textarea. -", - "name": "getTextareaValue", + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findXAxisTitle", + }, + "name": "findXAxisTitle", "parameters": [], "returnType": { - "name": "string", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keydown", + "name": "BaseCartesianChartWrapper.findXTicks", }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], + "name": "findXTicks", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keypress", + "name": "BaseCartesianChartWrapper.findYAxisTitle", }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], + "name": "findYAxisTitle", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keyup", + "name": "BaseCartesianChartWrapper.findYTicks", }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, + "name": "findYTicks", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], + ], + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.getElement", + }, + "name": "getElement", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "string", }, }, { @@ -77175,67 +80550,26 @@ Returns the current value of the textarea. }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Sets the value of the component and calls the onChange handler.", - "name": "setTextareaValue", - "parameters": [ - { - "description": " -value to set the textarea to. -", - "flags": { - "isOptional": false, - }, - "name": "value", - "typeName": "string", - }, - ], + "inheritedFrom": { + "name": "AbstractWrapper.toSelector", + }, + "name": "toSelector", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "string", }, }, ], - "name": "PromptInputWrapper", + "name": "BarChartWrapper", }, { "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.blur", - }, - "name": "blur", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, { "inheritedFrom": { "name": "AbstractWrapper.find", @@ -77251,8 +80585,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -77270,8 +80604,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -77289,42 +80628,45 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", + "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. +If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", "inheritedFrom": { "name": "AbstractWrapper.findAllComponents", }, "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -77340,12 +80682,12 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -77363,23 +80705,21 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -77387,204 +80727,325 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": false, + "name": "Wrapper", }, }, { - "name": "findLabel", + "inheritedFrom": { + "name": "AbstractWrapper.getElement", + }, + "name": "getElement", "parameters": [], "returnType": { - "name": "ElementWrapper", - "type": "reference", + "isNullable": false, + "name": "string", }, }, { - "name": "findRemoveButton", - "parameters": [], + "inheritedFrom": { + "name": "AbstractWrapper.matches", + }, + "name": "matches", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "selector", + "typeName": "string", + }, + ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "HTMLButtonElement", - "type": "reference", - }, - ], }, }, { - "name": "findTokenOperation", + "inheritedFrom": { + "name": "AbstractWrapper.toSelector", + }, + "name": "toSelector", "parameters": [], "returnType": { - "name": "SelectWrapper | null", - "type": "union", + "isNullable": false, + "name": "string", }, }, + ], + "name": "BoxWrapper", + }, + { + "methods": [ { "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", + "name": "AbstractWrapper.find", }, - "name": "fireEvent", + "name": "find", "parameters": [ { "flags": { "isOptional": false, }, - "name": "event", - "typeName": "Event", + "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.focus", + "name": "AbstractWrapper.findAll", }, - "name": "focus", - "parameters": [], + "name": "findAll", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "selector", + "typeName": "string", + }, + ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { "inheritedFrom": { - "name": "AbstractWrapper.getElement", + "name": "AbstractWrapper.findAllByClassName", }, - "name": "getElement", - "parameters": [], + "name": "findAllByClassName", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "className", + "typeName": "string", + }, + ], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { + "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. +If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", "inheritedFrom": { - "name": "AbstractWrapper.keydown", + "name": "AbstractWrapper.findAllComponents", }, - "name": "keydown", + "name": "findAllComponents", "parameters": [ { "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "ComponentClass", + "typeName": "ComponentWrapperClass", + }, + { + "description": "CSS Selector", + "flags": { + "isOptional": true, + }, + "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "Wrapper", + }, + ], }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keypress", + "name": "AbstractWrapper.findAny", }, - "name": "keypress", + "name": "findAny", "parameters": [ { "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "selectors", + "typeName": "Array", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "description": "Returns an item for a given index. Note that this may return the 'current' page item for backwards compatibility, +even though it is not technically a link.", + "name": "findBreadcrumbLink", + "parameters": [ + { + "description": "1-based item index", + "flags": { + "isOptional": false, + }, + "name": "index", + "typeName": "number", + }, + ], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "description": "Returns all breadcrumb items. Note that this includes the 'current' page item for backwards compatibility, +even though it is not technically a link. + +To find a specific item use the \`findBreadcrumbLink(n)\` function as chaining \`findBreadcrumbLinks().get(n)\` can return unexpected results.", + "name": "findBreadcrumbLinks", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keyup", + "name": "AbstractWrapper.findByClassName", }, - "name": "keyup", + "name": "findByClassName", "parameters": [ { "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { + "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { - "name": "AbstractWrapper.matches", + "name": "AbstractWrapper.findComponent", }, - "name": "matches", + "name": "findComponent", "parameters": [ { + "description": "CSS selector", "flags": { "isOptional": false, }, "name": "selector", "typeName": "string", }, + { + "description": "Component's wrapper class", + "flags": { + "isOptional": false, + }, + "name": "ComponentClass", + "typeName": "WrapperClass", + }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": false, + "name": "Wrapper", + }, + }, + { + "name": "findDropdown", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ButtonDropdownWrapper", }, }, - ], - "name": "FilteringGroupedTokenWrapper", - }, - { - "methods": [ { "inheritedFrom": { - "name": "AbstractWrapper.blur", + "name": "AbstractWrapper.getElement", }, - "name": "blur", + "name": "getElement", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "string", }, }, { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", "inheritedFrom": { - "name": "AbstractWrapper.click", + "name": "AbstractWrapper.matches", }, - "name": "click", + "name": "matches", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "params", - "typeName": "MouseEventInit", + "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.toSelector", + }, + "name": "toSelector", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "string", }, }, + ], + "name": "BreadcrumbGroupWrapper", + }, + { + "methods": [ { "inheritedFrom": { "name": "AbstractWrapper.find", @@ -77600,8 +81061,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -77619,8 +81080,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -77638,42 +81104,45 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", + "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. +If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", "inheritedFrom": { "name": "AbstractWrapper.findAllComponents", }, "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -77689,12 +81158,12 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -77712,23 +81181,21 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -77736,123 +81203,41 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": false, + "name": "Wrapper", }, }, { - "name": "findEditButton", + "name": "findDisabledReason", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "HTMLButtonElement", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns dropdown content of editing token if opened or \`null\` otherwise.", - "name": "findEditorDropdown", - "parameters": [ - { - "defaultValue": "{ expandToViewport: false }", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], - "returnType": { - "name": "null | PropertyFilterEditorDropdownWrapper", - "type": "union", }, }, { - "name": "findGroupTokens", - "parameters": [], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "FilteringGroupedTokenWrapper", - "type": "reference", - }, - ], - }, - }, - { - "name": "findLabel", + "name": "findLoadingIndicator", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { - "name": "findRemoveButton", + "name": "findTextRegion", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "HTMLButtonElement", - "type": "reference", - }, - ], - }, - }, - { - "name": "findTokenOperation", - "parameters": [], - "returnType": { - "name": "SelectWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", }, }, { @@ -77862,65 +81247,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keyup", - }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "string", }, }, { @@ -77938,47 +81266,26 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, - ], - "name": "FilteringTokenWrapper", - }, - { - "methods": [ { "inheritedFrom": { - "name": "AbstractWrapper.blur", + "name": "AbstractWrapper.toSelector", }, - "name": "blur", + "name": "toSelector", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "string", }, }, + ], + "name": "ButtonWrapper", + }, + { + "methods": [ { "inheritedFrom": { "name": "AbstractWrapper.find", @@ -77994,8 +81301,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -78013,8 +81320,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -78032,42 +81344,45 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", + "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. +If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", "inheritedFrom": { "name": "AbstractWrapper.findAllComponents", }, "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -78083,12 +81398,12 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -78106,31 +81421,21 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findCancelButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -78138,224 +81443,134 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "name": "findDismissButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - }, - }, - { - "name": "findForm", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", + "isNullable": false, + "name": "Wrapper", }, }, { - "name": "findHeader", + "description": "Finds the disabled reason tooltip for a dropdown item. Returns null if no disabled item with \`disabledReason\` is highlighted.", + "name": "findDisabledReason", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findOperatorField", - "parameters": [ - { - "defaultValue": "1", - "flags": { - "isOptional": false, - }, - "name": "index", - "typeName": "number", - }, - ], - "returnType": { - "name": "FormFieldWrapper", - "type": "reference", }, }, { - "name": "findPropertyField", + "description": "Finds an expandable category in the open dropdown by category id. Returns null if there is no open dropdown. + +This utility does not open the dropdown. To find dropdown items, call \`openDropdown()\` first.", + "name": "findExpandableCategoryById", "parameters": [ { - "defaultValue": "1", "flags": { "isOptional": false, }, - "name": "index", - "typeName": "number", + "name": "id", + "typeName": "string", }, ], "returnType": { - "name": "FormFieldWrapper", - "type": "reference", - }, - }, - { - "name": "findSubmitButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "name": "findTokenAddActions", + "description": "Finds the highlighted item in the open dropdown. Returns null if there is no open dropdown. + +This utility does not open the dropdown. To find dropdown items, call \`openDropdown()\` first.", + "name": "findHighlightedItem", "parameters": [], "returnType": { - "name": "null | ButtonDropdownWrapper", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "name": "findTokenRemoveActions", + "description": "Finds an item in the open dropdown by item id. Returns null if there is no open dropdown. + +This utility does not open the dropdown. To find dropdown items, call \`openDropdown()\` first.", + "name": "findItemById", "parameters": [ { - "defaultValue": "1", "flags": { "isOptional": false, }, - "name": "index", - "typeName": "number", + "name": "id", + "typeName": "string", }, ], "returnType": { - "name": "null | ButtonDropdownWrapper", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "name": "findValueField", - "parameters": [ - { - "defaultValue": "1", - "flags": { - "isOptional": false, - }, - "name": "index", - "typeName": "number", - }, - ], + "description": "Finds all the items in the open dropdown. Returns empty array if there is no open dropdown. + +This utility does not open the dropdown. To find dropdown items, call \`openDropdown()\` first.", + "name": "findItems", + "parameters": [], "returnType": { - "name": "FormFieldWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", }, - "name": "event", - "typeName": "Event", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", + ], }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", + "name": "findMainAction", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ButtonWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", + "name": "findNativeButton", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], + "name": "findOpenDropdown", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], + "name": "findTriggerButton", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ButtonWrapper", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keyup", + "name": "AbstractWrapper.getElement", }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], + "name": "getElement", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "string", }, }, { @@ -78373,47 +81588,26 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, - ], - "name": "PropertyFilterEditorDropdownWrapper", - }, - { - "methods": [ { "inheritedFrom": { - "name": "BaseInputWrapper.blur", + "name": "AbstractWrapper.toSelector", }, - "name": "blur", + "name": "toSelector", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "string", }, }, + ], + "name": "ButtonDropdownWrapper", + }, + { + "methods": [ { "inheritedFrom": { "name": "AbstractWrapper.find", @@ -78429,8 +81623,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -78448,8 +81642,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -78467,42 +81666,45 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", + "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. +If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", "inheritedFrom": { "name": "AbstractWrapper.findAllComponents", }, "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -78518,57 +81720,61 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", + "description": "Finds a button item by its id.", + "name": "findButtonById", "parameters": [ { "flags": { "isOptional": false, }, - "name": "className", + "name": "id", "typeName": "string", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ButtonWrapper", }, }, { "inheritedFrom": { - "name": "InputWrapper.findClearButton", + "name": "AbstractWrapper.findByClassName", }, - "name": "findClearButton", - "parameters": [], + "name": "findByClassName", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "className", + "typeName": "string", + }, + ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -78576,510 +81782,431 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the element containing the \`filteringConstraintText\` slot.", - "name": "findConstraint", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "Wrapper", }, }, { - "description": "Returns the element containing the \`customControl\` slot.", - "name": "findCustomControl", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the element containing the \`customFilterActions\` slot.", - "name": "findCustomFilterActions", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "", - "inheritedFrom": { - "name": "AutosuggestWrapper.findDropdown", - }, - "name": "findDropdown", - "parameters": [ - { - "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], - "returnType": { - "name": "AutosuggestDropdownWrapper", - "type": "reference", - }, - }, - { - "description": "", - "inheritedFrom": { - "name": "AutosuggestWrapper.findEnteredTextOption", - }, - "name": "findEnteredTextOption", - "parameters": [ - { - "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "", - "inheritedFrom": { - "name": "AutosuggestWrapper.findErrorRecoveryButton", - }, - "name": "findErrorRecoveryButton", + "description": "Finds a file input item by its id.", + "name": "findFileInputById", "parameters": [ { - "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", "flags": { "isOptional": false, }, - "name": "options", + "name": "id", + "typeName": "string", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "FileInputWrapper", }, }, { - "inheritedFrom": { - "name": "BaseInputWrapper.findNativeInput", - }, - "name": "findNativeInput", + "description": "Finds all button and menu items.", + "name": "findItems", "parameters": [], "returnType": { - "name": "ElementWrapper", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", "typeArguments": [ { - "name": "HTMLInputElement", - "type": "reference", + "name": "ElementWrapper", }, ], }, }, { - "description": "Returns custom property form cancel button.", - "name": "findPropertyCancelButton", + "description": "Finds a menu item by its id.", + "name": "findMenuById", "parameters": [ { - "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", "flags": { "isOptional": false, }, - "name": "options", + "name": "id", + "typeName": "string", }, ], "returnType": { - "name": "null | ButtonWrapper", - "type": "union", + "isNullable": false, + "name": "ButtonDropdownWrapper", }, }, { - "description": "Returns custom property form submit button.", - "name": "findPropertySubmitButton", + "description": "Finds a toggle button item by its id.", + "name": "findToggleButtonById", "parameters": [ { - "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", "flags": { "isOptional": false, }, - "name": "options", + "name": "id", + "typeName": "string", }, ], "returnType": { - "name": "null | ButtonWrapper", - "type": "union", + "isNullable": false, + "name": "ToggleButtonWrapper", }, }, { - "description": "Returns the button that removes all current tokens.", - "name": "findRemoveAllButton", + "description": "Finds the currently opened tooltip.", + "name": "findTooltip", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "name": "findResultsCount", + "inheritedFrom": { + "name": "AbstractWrapper.getElement", + }, + "name": "getElement", "parameters": [], "returnType": { - "name": "ElementWrapper", - "type": "reference", + "isNullable": false, + "name": "string", }, }, { - "description": "", "inheritedFrom": { - "name": "AutosuggestWrapper.findStatusIndicator", + "name": "AbstractWrapper.matches", }, - "name": "findStatusIndicator", + "name": "matches", "parameters": [ { - "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", "flags": { "isOptional": false, }, - "name": "options", + "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns the button that toggles if the tokens above \`tokenLimit\` are visible.", - "name": "findTokenToggle", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "inheritedFrom": { + "name": "AbstractWrapper.toSelector", }, - }, - { - "name": "findTokens", + "name": "toSelector", "parameters": [], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "FilteringTokenWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "string", }, }, + ], + "name": "ButtonGroupWrapper", + }, + { + "methods": [ { "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", + "name": "AbstractWrapper.find", }, - "name": "fireEvent", + "name": "find", "parameters": [ { "flags": { "isOptional": false, }, - "name": "event", - "typeName": "Event", + "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "BaseInputWrapper.focus", - }, - "name": "focus", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "HTMLElement", - "type": "reference", - }, - }, - { - "description": "Gets the value of the component. -Returns the current value of the input. -", - "inheritedFrom": { - "name": "BaseInputWrapper.getInputValue", - }, - "name": "getInputValue", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { "inheritedFrom": { - "name": "BaseInputWrapper.isDisabled", + "name": "AbstractWrapper.findAll", }, - "name": "isDisabled", - "parameters": [], + "name": "findAll", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "selector", + "typeName": "string", + }, + ], "returnType": { - "name": "boolean", - "type": "intrinsic", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keydown", + "name": "AbstractWrapper.findAllByClassName", }, - "name": "keydown", + "name": "findAllByClassName", "parameters": [ { "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { + "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. +If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", "inheritedFrom": { - "name": "AbstractWrapper.keypress", + "name": "AbstractWrapper.findAllComponents", }, - "name": "keypress", + "name": "findAllComponents", "parameters": [ { "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "ComponentClass", + "typeName": "ComponentWrapperClass", + }, + { + "description": "CSS Selector", + "flags": { + "isOptional": true, + }, + "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "Wrapper", + }, + ], }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keyup", + "name": "AbstractWrapper.findAny", }, - "name": "keyup", + "name": "findAny", "parameters": [ { "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "selectors", + "typeName": "Array", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.matches", + "name": "AbstractWrapper.findByClassName", }, - "name": "matches", + "name": "findByClassName", "parameters": [ { "flags": { "isOptional": false, }, - "name": "selector", + "name": "className", "typeName": "string", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Selects a suggestion from the dropdown by simulating mouse events.", + "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { - "name": "AutosuggestWrapper.selectSuggestion", + "name": "AbstractWrapper.findComponent", }, - "name": "selectSuggestion", + "name": "findComponent", "parameters": [ { - "description": " -1-based index of the suggestion to select.", + "description": "CSS selector", "flags": { "isOptional": false, }, - "name": "index", - "typeName": "number", + "name": "selector", + "typeName": "string", }, { - "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, - "name": "options", + "name": "ComponentClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "Wrapper", }, }, { - "description": "Selects a suggestion from the dropdown by simulating mouse events.", - "inheritedFrom": { - "name": "AutosuggestWrapper.selectSuggestionByValue", - }, - "name": "selectSuggestionByValue", + "description": "Returns a date container on the calendar.", + "name": "findDateAt", "parameters": [ { - "description": " -value of suggestion to select", + "description": "1-based row index of the day or month.", "flags": { "isOptional": false, }, - "name": "value", - "typeName": "string", + "name": "row", + "typeName": "number", }, { - "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", + "description": "1-based column index of the day or month.", "flags": { "isOptional": false, }, - "name": "options", + "name": "column", + "typeName": "number", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "CalendarDateWrapper", }, }, { - "description": "Sets the value of the component and calls the \`onChange\` handler", - "inheritedFrom": { - "name": "BaseInputWrapper.setInputValue", + "name": "findHeader", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", }, - "name": "setInputValue", - "parameters": [ - { - "description": " -The value the input is set to. -", - "flags": { - "isOptional": false, - }, - "name": "value", - "typeName": "string", - }, - ], + }, + { + "name": "findNextButton", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ButtonWrapper", + }, + }, + { + "description": "Alias for findNextButton for compatibility with previous versions", + "name": "findNextMonthButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ButtonWrapper", + }, + }, + { + "name": "findPreviousButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ButtonWrapper", + }, + }, + { + "description": "Alias for findPreviousButton for compatibility with previous versions", + "name": "findPreviousMonthButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ButtonWrapper", + }, + }, + { + "name": "findSelectedDate", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", }, }, - ], - "name": "PropertyFilterWrapper", - }, - { - "methods": [ { "inheritedFrom": { - "name": "AbstractWrapper.blur", + "name": "AbstractWrapper.getElement", }, - "name": "blur", + "name": "getElement", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "string", }, }, { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", "inheritedFrom": { - "name": "AbstractWrapper.click", + "name": "AbstractWrapper.matches", }, - "name": "click", + "name": "matches", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "params", - "typeName": "MouseEventInit", + "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.toSelector", + }, + "name": "toSelector", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "string", }, }, + ], + "name": "CalendarWrapper", + }, + { + "methods": [ { "inheritedFrom": { "name": "AbstractWrapper.find", @@ -79095,8 +82222,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -79114,8 +82241,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -79133,42 +82265,45 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", + "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. +If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", "inheritedFrom": { "name": "AbstractWrapper.findAllComponents", }, "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -79184,26 +82319,12 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findButtons", - "parameters": [], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "RadioButtonWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -79221,23 +82342,21 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -79245,193 +82364,76 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": false, + "name": "Wrapper", }, }, { - "name": "findInputByValue", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "value", - "typeName": "string", - }, - ], + "name": "findDisabledReason", + "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", + "name": "AbstractWrapper.getElement", }, - "name": "fireEvent", + "name": "getElement", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "string", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.matches", + }, + "name": "matches", "parameters": [ { "flags": { "isOptional": false, }, - "name": "event", - "typeName": "Event", + "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.focus", + "name": "AbstractWrapper.toSelector", }, - "name": "focus", + "name": "toSelector", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "string", }, }, + ], + "name": "CalendarDateWrapper", + }, + { + "methods": [ { "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "HTMLElement", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keyup", - }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "this | null", - "type": "union", - }, - }, - ], - "name": "RadioGroupWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.blur", - }, - "name": "blur", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.find", + "name": "AbstractWrapper.find", }, "name": "find", "parameters": [ @@ -79444,8 +82446,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -79463,8 +82465,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -79482,42 +82489,45 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", + "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. +If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", "inheritedFrom": { "name": "AbstractWrapper.findAllComponents", }, "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -79533,12 +82543,12 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -79556,23 +82566,29 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findCollectionPreferences", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "CollectionPreferencesWrapper", }, }, { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -79580,146 +82596,112 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": false, + "name": "Wrapper", }, }, { - "name": "findDescription", + "description": "Alias for findEmptySlot method for compatibility with previous versions", + "name": "findEmptyRegion", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "name": "findLabel", + "name": "findEmptySlot", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { - "name": "findNativeInput", + "name": "findHeader", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "HTMLInputElement", - "type": "reference", - }, - ], }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], + "description": "Alias for findHeader method for compatibility with previous versions", + "name": "findHeaderRegion", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", + "name": "findItems", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "CardWrapper", + }, + ], }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", + "name": "findLoadingText", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], + "name": "findPagination", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "PaginationWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, + "name": "findSelectedItems", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "CardWrapper", }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], + ], + }, + }, + { + "name": "findTextFilter", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "TextFilterWrapper", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keyup", + "name": "AbstractWrapper.getElement", }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], + "name": "getElement", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "string", }, }, { @@ -79737,47 +82719,26 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, - ], - "name": "RadioButtonWrapper", - }, - { - "methods": [ { "inheritedFrom": { - "name": "AbstractWrapper.blur", + "name": "AbstractWrapper.toSelector", }, - "name": "blur", + "name": "toSelector", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "string", }, }, + ], + "name": "CardsWrapper", + }, + { + "methods": [ { "inheritedFrom": { "name": "AbstractWrapper.find", @@ -79793,8 +82754,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -79812,8 +82773,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -79831,42 +82797,45 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", + "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. +If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", "inheritedFrom": { "name": "AbstractWrapper.findAllComponents", }, "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -79882,20 +82851,12 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findBrowseButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -79913,23 +82874,21 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -79937,308 +82896,207 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": false, + "name": "Wrapper", }, }, { - "name": "findUriInput", + "name": "findDescription", "parameters": [], "returnType": { - "name": "InputWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "name": "findVersionsSelect", + "name": "findLabel", "parameters": [], "returnType": { - "name": "SelectWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "name": "findViewButton", + "name": "findNativeInput", "parameters": [], "returnType": { - "name": "ButtonWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", + "name": "AbstractWrapper.getElement", }, - "name": "fireEvent", + "name": "getElement", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "string", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.matches", + }, + "name": "matches", "parameters": [ { "flags": { "isOptional": false, }, - "name": "event", - "typeName": "Event", + "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.getElement", + "name": "AbstractWrapper.toSelector", }, - "name": "getElement", + "name": "toSelector", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "string", }, }, + ], + "name": "CheckboxWrapper", + }, + { + "methods": [ { "inheritedFrom": { - "name": "AbstractWrapper.keydown", + "name": "AbstractWrapper.find", }, - "name": "keydown", + "name": "find", "parameters": [ { "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keypress", + "name": "AbstractWrapper.findAll", }, - "name": "keypress", + "name": "findAll", "parameters": [ { "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keyup", + "name": "AbstractWrapper.findAllByClassName", }, - "name": "keyup", + "name": "findAllByClassName", "parameters": [ { "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { + "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. +If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", "inheritedFrom": { - "name": "AbstractWrapper.matches", + "name": "AbstractWrapper.findAllComponents", }, - "name": "matches", + "name": "findAllComponents", "parameters": [ { "flags": { "isOptional": false, }, + "name": "ComponentClass", + "typeName": "ComponentWrapperClass", + }, + { + "description": "CSS Selector", + "flags": { + "isOptional": true, + }, "name": "selector", "typeName": "string", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "Wrapper", + }, + ], }, }, - ], - "name": "S3InContextWrapper", - }, - { - "methods": [ { "inheritedFrom": { - "name": "AbstractWrapper.blur", + "name": "AbstractWrapper.findAny", }, - "name": "blur", - "parameters": [], + "name": "findAny", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "selectors", + "typeName": "Array", + }, + ], "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -80256,23 +83114,21 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -80280,179 +83136,100 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": false, + "name": "Wrapper", }, }, { - "inheritedFrom": { - "name": "ModalWrapper.findContent", - }, - "name": "findContent", + "name": "findEditor", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { - "inheritedFrom": { - "name": "ModalWrapper.findDismissButton", - }, - "name": "findDismissButton", + "name": "findErrorScreen", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { - "inheritedFrom": { - "name": "ModalWrapper.findFooter", - }, - "name": "findFooter", + "name": "findErrorsTab", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "inheritedFrom": { - "name": "ModalWrapper.findHeader", - }, - "name": "findHeader", + "name": "findLoadingScreen", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { - "name": "findSubmitButton", + "name": "findNativeTextArea", "parameters": [], "returnType": { - "name": "ButtonWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", + "name": "findPane", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", + "name": "findSettingsButton", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ButtonWrapper", }, }, { - "inheritedFrom": { - "name": "ModalWrapper.isVisible", - }, - "name": "isVisible", + "name": "findStatusBar", "parameters": [], "returnType": { - "name": "boolean", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], + "name": "findWarningsTab", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keyup", + "name": "AbstractWrapper.getElement", }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], + "name": "getElement", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "string", }, }, { @@ -80470,47 +83247,26 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, - ], - "name": "S3ModalWrapper", - }, - { - "methods": [ { "inheritedFrom": { - "name": "AbstractWrapper.blur", + "name": "AbstractWrapper.toSelector", }, - "name": "blur", + "name": "toSelector", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "string", }, }, + ], + "name": "CodeEditorWrapper", + }, + { + "methods": [ { "inheritedFrom": { "name": "AbstractWrapper.find", @@ -80526,16 +83282,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findAlertSlot", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -80553,8 +83301,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -80572,42 +83325,45 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", + "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. +If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", "inheritedFrom": { "name": "AbstractWrapper.findAllComponents", }, "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -80623,12 +83379,12 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -80646,23 +83402,21 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -80670,72 +83424,33 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "name": "findInContext", - "parameters": [], - "returnType": { - "name": "S3InContextWrapper", - "type": "reference", + "isNullable": false, + "name": "Wrapper", }, }, { "name": "findModal", "parameters": [], "returnType": { - "name": "S3ModalWrapper | null", - "type": "union", - }, - }, - { - "name": "findTable", - "parameters": [], - "returnType": { - "name": "TableWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "PreferencesModalWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", + "name": "findTriggerButton", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ButtonWrapper", }, }, { @@ -80745,65 +83460,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keyup", - }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "string", }, }, { @@ -80821,47 +83479,26 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, - ], - "name": "S3ResourceSelectorWrapper", - }, - { - "methods": [ { "inheritedFrom": { - "name": "AbstractWrapper.blur", + "name": "AbstractWrapper.toSelector", }, - "name": "blur", + "name": "toSelector", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "string", }, }, + ], + "name": "CollectionPreferencesWrapper", + }, + { + "methods": [ { "inheritedFrom": { "name": "AbstractWrapper.find", @@ -80877,8 +83514,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -80896,8 +83533,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -80915,42 +83557,45 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", + "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. +If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", "inheritedFrom": { "name": "AbstractWrapper.findAllComponents", }, "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -80966,12 +83611,12 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -80989,23 +83634,29 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { + "name": "findCancelButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ButtonWrapper", + }, + }, + { + "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", + "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -81013,124 +83664,161 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": false, + "name": "Wrapper", }, }, { - "name": "findDisabledReason", + "name": "findConfirmButton", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ButtonWrapper", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", + "name": "ModalWrapper.findContent", }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], + "name": "findContent", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.focus", + "name": "findContentBefore", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", }, - "name": "focus", + }, + { + "name": "findContentDensityPreference", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "CheckboxWrapper", + }, + }, + { + "name": "findContentDisplayPreference", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ContentDisplayPreferenceWrapper", + }, + }, + { + "name": "findCustomPreference", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.getElement", + "name": "ModalWrapper.findDismissButton", }, - "name": "getElement", + "name": "findDismissButton", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keydown", + "name": "ModalWrapper.findFooter", }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], + "name": "findFooter", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keypress", + "name": "ModalWrapper.findHeader", }, - "name": "keypress", + "name": "findHeader", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findPageSizePreference", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "PageSizePreferenceWrapper", + }, + }, + { + "name": "findStickyColumnsPreference", "parameters": [ { + "defaultValue": "'first'", "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "firstOrLast", + "typeName": ""first" | "last"", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "StickyColumnsPreferenceWrapper", + }, + }, + { + "name": "findStripedRowsPreference", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "CheckboxWrapper", + }, + }, + { + "name": "findVisibleContentPreference", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "VisibleContentPreferenceWrapper", + }, + }, + { + "name": "findWrapLinesPreference", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "CheckboxWrapper", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keyup", + "name": "AbstractWrapper.getElement", }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], + "name": "getElement", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "string", }, }, { @@ -81148,47 +83836,26 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, - ], - "name": "SegmentWrapper", - }, - { - "methods": [ { "inheritedFrom": { - "name": "AbstractWrapper.blur", + "name": "AbstractWrapper.toSelector", }, - "name": "blur", + "name": "toSelector", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "string", }, }, + ], + "name": "PreferencesModalWrapper", + }, + { + "methods": [ { "inheritedFrom": { "name": "AbstractWrapper.find", @@ -81204,8 +83871,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -81223,8 +83890,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -81242,42 +83914,45 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", + "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. +If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", "inheritedFrom": { "name": "AbstractWrapper.findAllComponents", }, "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -81293,12 +83968,12 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -81316,114 +83991,60 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + "description": "Returns a column from the grid for a given index.", "inheritedFrom": { - "name": "AbstractWrapper.findComponent", + "name": "GridWrapper.findColumn", }, - "name": "findComponent", + "name": "findColumn", "parameters": [ { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", + "description": "1-based index of the column to return.", "flags": { "isOptional": false, }, - "name": "ComponentClass", - "typeName": "WrapperClass", + "name": "columnIndex", + "typeName": "number", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Finds the segment with the given ID.", - "name": "findSegmentById", + "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", + "inheritedFrom": { + "name": "AbstractWrapper.findComponent", + }, + "name": "findComponent", "parameters": [ { - "description": " -ID of the element to return. -", + "description": "CSS selector", "flags": { "isOptional": false, }, - "name": "id", + "name": "selector", "typeName": "string", }, - ], - "returnType": { - "name": "SegmentWrapper | null", - "type": "union", - }, - }, - { - "name": "findSegments", - "parameters": [], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "name": "findSelectedSegment", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ { + "description": "Component's wrapper class", "flags": { "isOptional": false, }, - "name": "event", - "typeName": "Event", + "name": "ComponentClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "Wrapper", }, }, { @@ -81433,65 +84054,8 @@ ID of the element to return. "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keyup", - }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "string", }, }, { @@ -81509,103 +84073,26 @@ ID of the element to return. }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, - ], - "name": "SegmentedControlWrapper", - }, - { - "methods": [ { "inheritedFrom": { - "name": "AbstractWrapper.blur", + "name": "AbstractWrapper.toSelector", }, - "name": "blur", + "name": "toSelector", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Selects all options by triggering corresponding events on the element that selects or deselects all options in Multiselect when using the \`enableSelectAll\` flag. -This utility does not open the dropdown of the given select. You will need to call \`openDropdown\` first in your test. - -Example: -\`\`\` -wrapper.openDropdown(); -wrapper.clickSelectAll(); -\`\`\` -", - "inheritedFrom": { - "name": "DropdownHostComponentWrapper.clickSelectAll", - }, - "name": "clickSelectAll", - "parameters": [ - { - "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "", - "inheritedFrom": { - "name": "DropdownHostComponentWrapper.closeDropdown", - }, - "name": "closeDropdown", - "parameters": [ - { - "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "string", }, }, + ], + "name": "ColumnLayoutWrapper", + }, + { + "methods": [ { "inheritedFrom": { "name": "AbstractWrapper.find", @@ -81621,8 +84108,8 @@ wrapper.clickSelectAll(); }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -81640,8 +84127,13 @@ wrapper.clickSelectAll(); }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -81659,42 +84151,45 @@ wrapper.clickSelectAll(); }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", + "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. +If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", "inheritedFrom": { "name": "AbstractWrapper.findAllComponents", }, "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -81710,12 +84205,12 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -81733,23 +84228,21 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -81757,388 +84250,353 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": false, + "name": "Wrapper", }, }, { - "description": "", - "inheritedFrom": { - "name": "DropdownHostComponentWrapper.findDropdown", - }, - "name": "findDropdown", - "parameters": [ - { - "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], + "name": "findContent", + "parameters": [], "returnType": { - "name": "DropdownContentWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "", - "name": "findErrorRecoveryButton", - "parameters": [ - { - "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], + "name": "findFooter", + "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns the input that is used for filtering.", - "name": "findFilteringInput", - "parameters": [ - { - "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], + "name": "findHeader", + "parameters": [], "returnType": { - "name": "InputWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "name": "findInlineLabel", + "name": "findMedia", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "name": "findPlaceholder", + "inheritedFrom": { + "name": "AbstractWrapper.getElement", + }, + "name": "getElement", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "string", }, }, { - "description": "", - "name": "findStatusIndicator", + "inheritedFrom": { + "name": "AbstractWrapper.matches", + }, + "name": "matches", "parameters": [ { - "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", "flags": { "isOptional": false, }, - "name": "options", + "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "name": "findTrigger", + "inheritedFrom": { + "name": "AbstractWrapper.toSelector", + }, + "name": "toSelector", "parameters": [], "returnType": { - "name": "ElementWrapper", - "type": "reference", + "isNullable": false, + "name": "string", }, }, + ], + "name": "ContainerWrapper", + }, + { + "methods": [ { "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", + "name": "AbstractWrapper.find", }, - "name": "fireEvent", + "name": "find", "parameters": [ { "flags": { "isOptional": false, }, - "name": "event", - "typeName": "Event", + "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "HTMLElement", - "type": "reference", - }, - }, - { - "name": "isDisabled", - "parameters": [], - "returnType": { - "name": "boolean", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keydown", + "name": "AbstractWrapper.findAll", }, - "name": "keydown", + "name": "findAll", "parameters": [ { "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keypress", + "name": "AbstractWrapper.findAllByClassName", }, - "name": "keypress", + "name": "findAllByClassName", "parameters": [ { "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { + "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. +If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", "inheritedFrom": { - "name": "AbstractWrapper.keyup", + "name": "AbstractWrapper.findAllComponents", }, - "name": "keyup", + "name": "findAllComponents", "parameters": [ { "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "ComponentClass", + "typeName": "ComponentWrapperClass", + }, + { + "description": "CSS Selector", + "flags": { + "isOptional": true, + }, + "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "Wrapper", + }, + ], }, }, { "inheritedFrom": { - "name": "AbstractWrapper.matches", + "name": "AbstractWrapper.findAny", }, - "name": "matches", + "name": "findAny", "parameters": [ { "flags": { "isOptional": false, }, - "name": "selector", - "typeName": "string", + "name": "selectors", + "typeName": "Array", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "inheritedFrom": { - "name": "DropdownHostComponentWrapper.openDropdown", - }, - "name": "openDropdown", + "name": "findBreadcrumbs", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Selects an option for the given index by triggering corresponding events. -This utility does not open the dropdown of the given select. You will need to call \`openDropdown\` first in your test. -On selection the dropdown will close automatically. - -Example: -\`\`\` -wrapper.openDropdown(); -wrapper.selectOption(1); -\`\`\` -", "inheritedFrom": { - "name": "DropdownHostComponentWrapper.selectOption", + "name": "AbstractWrapper.findByClassName", }, - "name": "selectOption", + "name": "findByClassName", "parameters": [ { - "description": " -1-based index of the option to select", - "flags": { - "isOptional": false, - }, - "name": "index", - "typeName": "number", - }, - { - "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", "flags": { "isOptional": false, }, - "name": "options", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Selects an option for the given value by triggering corresponding events. -This utility does not open the dropdown of the given select. You will need to call \`openDropdown\` first in your test. -On selection the dropdown will close automatically. + "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Example: -\`\`\` -wrapper.openDropdown(); -wrapper.selectOptionByValue('option_1'); -\`\`\` -", +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { - "name": "DropdownHostComponentWrapper.selectOptionByValue", + "name": "AbstractWrapper.findComponent", }, - "name": "selectOptionByValue", + "name": "findComponent", "parameters": [ { - "description": " -value of the option", + "description": "CSS selector", "flags": { "isOptional": false, }, - "name": "value", + "name": "selector", "typeName": "string", }, { - "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, - "name": "options", + "name": "ComponentClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "Wrapper", + }, + }, + { + "name": "findContent", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findHeader", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findNotifications", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findSecondaryHeader", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", }, }, - ], - "name": "SelectWrapper", - }, - { - "methods": [ { "inheritedFrom": { - "name": "AbstractWrapper.blur", + "name": "AbstractWrapper.getElement", }, - "name": "blur", + "name": "getElement", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "string", }, }, { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", "inheritedFrom": { - "name": "AbstractWrapper.click", + "name": "AbstractWrapper.matches", }, - "name": "click", + "name": "matches", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "params", - "typeName": "MouseEventInit", + "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.toSelector", + }, + "name": "toSelector", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "string", }, }, + ], + "name": "ContentLayoutWrapper", + }, + { + "methods": [ { "inheritedFrom": { "name": "AbstractWrapper.find", @@ -82154,8 +84612,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -82173,8 +84631,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -82192,42 +84655,45 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", + "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. +If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", "inheritedFrom": { "name": "AbstractWrapper.findAllComponents", }, "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -82243,12 +84709,12 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -82266,23 +84732,21 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -82290,293 +84754,354 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "name": "findDivider", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "Wrapper", }, }, { - "name": "findExpandableLinkGroup", + "name": "findCopyButton", "parameters": [], "returnType": { - "name": "ExpandableSectionWrapper | null", - "type": "union", + "isNullable": false, + "name": "ButtonWrapper", }, }, { - "name": "findInfo", + "description": "Used to get the text displayed next to the copy icon button when \`variant='inline'\`. +Returns either the \`textToCopy\` value or the \`textToDisplay\` value if it has been set.", + "name": "findDisplayedText", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "name": "findItemByIndex", + "name": "findStatusText", "parameters": [ { + "defaultValue": "{ + popoverRenderWithPortal: false + }", "flags": { "isOptional": false, }, - "name": "index", - "typeName": "number", + "name": "options", + "typeName": "{ popoverRenderWithPortal: boolean; }", }, ], "returnType": { - "name": "SideNavigationItemWrapper | null", - "type": "union", - }, - }, - { - "name": "findItems", - "parameters": [], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "SideNavigationItemWrapper", - "type": "reference", - }, - ], - }, - }, - { - "name": "findLink", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findSection", - "parameters": [], - "returnType": { - "name": "ExpandableSectionWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "name": "findSectionGroup", + "name": "findTextToCopy", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "name": "findSectionGroupTitle", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "inheritedFrom": { + "name": "AbstractWrapper.getElement", }, - }, - { - "name": "findSectionTitle", + "name": "getElement", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "string", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", + "name": "AbstractWrapper.matches", }, - "name": "fireEvent", + "name": "matches", "parameters": [ { "flags": { "isOptional": false, }, - "name": "event", - "typeName": "Event", + "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.getElement", + "name": "AbstractWrapper.toSelector", }, - "name": "getElement", + "name": "toSelector", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "string", }, }, + ], + "name": "CopyToClipboardWrapper", + }, + { + "methods": [ { "inheritedFrom": { - "name": "AbstractWrapper.keydown", + "name": "AbstractWrapper.find", }, - "name": "keydown", + "name": "find", "parameters": [ { "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keypress", + "name": "AbstractWrapper.findAll", }, - "name": "keypress", + "name": "findAll", "parameters": [ { "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keyup", + "name": "AbstractWrapper.findAllByClassName", }, - "name": "keyup", + "name": "findAllByClassName", "parameters": [ { "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { + "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. +If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", "inheritedFrom": { - "name": "AbstractWrapper.matches", + "name": "AbstractWrapper.findAllComponents", }, - "name": "matches", + "name": "findAllComponents", "parameters": [ { "flags": { "isOptional": false, }, + "name": "ComponentClass", + "typeName": "ComponentWrapperClass", + }, + { + "description": "CSS Selector", + "flags": { + "isOptional": true, + }, "name": "selector", "typeName": "string", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "Wrapper", + }, + ], }, }, - ], - "name": "SideNavigationItemWrapper", - }, - { - "methods": [ { "inheritedFrom": { - "name": "AbstractWrapper.blur", + "name": "AbstractWrapper.findAny", }, - "name": "blur", - "parameters": [], + "name": "findAny", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "selectors", + "typeName": "Array", + }, + ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", "inheritedFrom": { - "name": "AbstractWrapper.click", + "name": "AbstractWrapper.findByClassName", }, - "name": "click", + "name": "findByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "params", - "typeName": "MouseEventInit", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { + "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { - "name": "AbstractWrapper.find", + "name": "AbstractWrapper.findComponent", }, - "name": "find", + "name": "findComponent", "parameters": [ { + "description": "CSS selector", "flags": { "isOptional": false, }, "name": "selector", "typeName": "string", }, + { + "description": "Component's wrapper class", + "flags": { + "isOptional": false, + }, + "name": "ComponentClass", + "typeName": "WrapperClass", + }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "Wrapper", }, }, { - "name": "findActiveLink", + "inheritedFrom": { + "name": "BaseInputWrapper.findNativeInput", + }, + "name": "findNativeInput", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.getElement", + }, + "name": "getElement", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "string", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.matches", + }, + "name": "matches", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "selector", + "typeName": "string", + }, + ], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.toSelector", + }, + "name": "toSelector", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "string", + }, + }, + ], + "name": "DateInputWrapper", + }, + { + "methods": [ + { + "inheritedFrom": { + "name": "AbstractWrapper.find", + }, + "name": "find", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "selector", + "typeName": "string", + }, + ], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -82594,8 +85119,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -82613,42 +85143,45 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", + "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. +If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", "inheritedFrom": { "name": "AbstractWrapper.findAllComponents", }, "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -82664,12 +85197,12 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -82687,128 +85220,86 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", + "name": "findCalendar", "parameters": [ { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", + "defaultValue": "{ + expandToViewport: false + }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", "flags": { "isOptional": false, }, - "name": "ComponentClass", - "typeName": "WrapperClass", + "name": "options", + "typeName": "{ expandToViewport: boolean; }", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": false, + "name": "CalendarWrapper", }, }, { - "name": "findHeader", + "name": "findCalendarDropdown", "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "name": "findHeaderLink", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", + "inheritedFrom": { + "name": "AbstractWrapper.findComponent", }, - }, - { - "name": "findItemByIndex", + "name": "findComponent", "parameters": [ { + "description": "CSS selector", "flags": { "isOptional": false, }, - "name": "index", - "typeName": "number", + "name": "selector", + "typeName": "string", }, - ], - "returnType": { - "name": "SideNavigationItemWrapper | null", - "type": "union", - }, - }, - { - "name": "findItemsControl", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findLinkByHref", - "parameters": [ { + "description": "Component's wrapper class", "flags": { "isOptional": false, }, - "name": "href", - "typeName": "string", + "name": "ComponentClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "Wrapper", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", + "name": "BaseInputWrapper.findNativeInput", }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], + "name": "findNativeInput", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", + "name": "findOpenCalendarButton", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ButtonWrapper", }, }, { @@ -82818,65 +85309,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keyup", - }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "string", }, }, { @@ -82894,47 +85328,26 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, - ], - "name": "SideNavigationWrapper", - }, - { - "methods": [ { "inheritedFrom": { - "name": "BaseInputWrapper.blur", + "name": "AbstractWrapper.toSelector", }, - "name": "blur", + "name": "toSelector", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "string", }, }, + ], + "name": "DatePickerWrapper", + }, + { + "methods": [ { "inheritedFrom": { "name": "AbstractWrapper.find", @@ -82950,8 +85363,8 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -82969,8 +85382,13 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -82988,42 +85406,45 @@ Note that programmatic events ignore disabled attribute and will trigger listene }, ], "returnType": { - "name": "array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", + "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. +If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", "inheritedFrom": { "name": "AbstractWrapper.findAllComponents", }, "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -83039,12 +85460,12 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -83062,23 +85483,21 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -83086,162 +85505,127 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "name": "findNativeInput", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "HTMLInputElement", - "type": "reference", - }, - ], + "isNullable": false, + "name": "Wrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", + "name": "findDropdown", "parameters": [ { + "defaultValue": "{ + expandToViewport: false + }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", "flags": { "isOptional": false, }, - "name": "event", - "typeName": "Event", + "name": "options", + "typeName": "{ expandToViewport: boolean; }", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "DrpDropdownWrapper", }, }, { - "inheritedFrom": { - "name": "BaseInputWrapper.focus", - }, - "name": "focus", + "description": "Alias for \`findTrigger\`", + "name": "findLabel", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", + "description": "Returns the trigger element that can be used to open the picker dropdown.", + "name": "findTrigger", "parameters": [], "returnType": { - "name": "HTMLElement", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Gets the value of the component. -Returns the current value of the input. -", "inheritedFrom": { - "name": "BaseInputWrapper.getInputValue", + "name": "AbstractWrapper.getElement", }, - "name": "getInputValue", + "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "BaseInputWrapper.isDisabled", - }, - "name": "isDisabled", - "parameters": [], - "returnType": { - "name": "boolean", - "type": "intrinsic", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keydown", + "name": "AbstractWrapper.matches", }, - "name": "keydown", + "name": "matches", "parameters": [ { "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keypress", + "name": "AbstractWrapper.toSelector", }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], + "name": "toSelector", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "string", }, }, + ], + "name": "DateRangePickerWrapper", + }, + { + "methods": [ { "inheritedFrom": { - "name": "AbstractWrapper.keyup", + "name": "AbstractWrapper.find", }, - "name": "keyup", + "name": "find", "parameters": [ { "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.matches", + "name": "AbstractWrapper.findAll", }, - "name": "matches", + "name": "findAll", "parameters": [ { "flags": { @@ -83252,159 +85636,69 @@ Returns the current value of the input. }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Sets the value of the component and calls the \`onChange\` handler", "inheritedFrom": { - "name": "BaseInputWrapper.setInputValue", + "name": "AbstractWrapper.findAllByClassName", }, - "name": "setInputValue", + "name": "findAllByClassName", "parameters": [ { - "description": " -The value the input is set to. -", "flags": { "isOptional": false, }, - "name": "value", + "name": "className", "typeName": "string", }, ], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, - ], - "name": "SliderWrapper", - }, - { - "methods": [ { - "inheritedFrom": { - "name": "AbstractWrapper.blur", - }, - "name": "blur", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", + "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. +If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", "inheritedFrom": { "name": "AbstractWrapper.findAllComponents", }, "name": "findAllComponents", "parameters": [ { - "description": " -Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "Array", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -83420,12 +85714,20 @@ Component's wrapper class", "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findApplyButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ButtonWrapper", }, }, { @@ -83443,23 +85745,37 @@ Component's wrapper class", }, ], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + "name": "findCancelButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ButtonWrapper", + }, + }, + { + "name": "findClearButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ButtonWrapper", + }, + }, + { + "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -83467,435 +85783,244 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": false, + "name": "Wrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], + "description": "Returns the day container that corresponds to the current day.", + "name": "findCurrentDay", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "CalendarDateWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", + "description": "Returns the month container that corresponds to the current month.", + "name": "findCurrentMonth", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "CalendarDateWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", + "name": "findCustomRelativeRangeDuration", "parameters": [], "returnType": { - "name": "HTMLButtonElement", - "type": "reference", + "isNullable": false, + "name": "InputWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], + "name": "findCustomRelativeRangeUnit", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "SelectWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", + "description": "Returns a day container on the calendar.", + "name": "findDateAt", "parameters": [ { + "description": "the calendar grid. If only one calendar grid is visible (on small screens), use \`'right'\`.", "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "grid", + "typeName": ""left" | "right"", }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keyup", - }, - "name": "keyup", - "parameters": [ { + "description": "1-based row index of the day.", "flags": { "isOptional": false, }, - "name": "keyCode", - "typeName": "KeyCode", + "name": "row", + "typeName": "2 | 1 | 3 | 4 | 5 | 6", }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ { + "description": "1-based column index of the day.", "flags": { "isOptional": false, }, - "name": "selector", - "typeName": "string", + "name": "column", + "typeName": "2 | 1 | 3 | 4 | 5 | 6 | 7", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": false, + "name": "CalendarDateWrapper", }, }, - ], - "name": "SpaceBetweenWrapper", - }, - { - "methods": [ { - "inheritedFrom": { - "name": "AbstractWrapper.blur", - }, - "name": "blur", + "name": "findEndDateInput", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "InputWrapper", }, }, { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], + "name": "findEndTimeInput", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "InputWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], + "name": "findHeader", + "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", + "description": "Returns a month container on the calendar.", + "name": "findMonthAt", "parameters": [ { + "description": "the calendar grid. If only one calendar grid is visible (on small screens), use \`'right'\`.", "flags": { "isOptional": false, }, - "name": "selector", - "typeName": "string", + "name": "grid", + "typeName": ""left" | "right"", }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ { + "description": "1-based row index of the month.", "flags": { "isOptional": false, }, - "name": "className", - "typeName": "string", + "name": "row", + "typeName": "2 | 1 | 3 | 4", }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ { - "description": " -Component's wrapper class", + "description": "1-based column index of the month.", "flags": { "isOptional": false, }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", + "name": "column", + "typeName": "2 | 1 | 3", }, ], "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], + "isNullable": false, + "name": "CalendarDateWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], + "name": "findNextButton", + "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ButtonWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], + "description": "Alias for findNextButton for compatibility with previous versions.", + "name": "findNextMonthButton", + "parameters": [], "returnType": { - "name": "ElementWrapper | null", - "type": "union", + "isNullable": false, + "name": "ButtonWrapper", }, }, { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], + "name": "findPreviousButton", + "parameters": [], "returnType": { - "name": "Wrapper | null", - "type": "union", + "isNullable": false, + "name": "ButtonWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], + "description": "Alias for findPreviousButton for compatibility with previous versions.", + "name": "findPreviousMonthButton", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ButtonWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", + "name": "findRelativeRangeRadioGroup", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "RadioGroupWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", + "name": "findSelectedEndDate", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", }, - "name": "getElement", + }, + { + "name": "findSelectedStartDate", "parameters": [], "returnType": { - "name": "HTMLButtonElement", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", + "name": "findSelectionModeSwitch", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "SelectionModeSwitchWrapper", }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], + }, + { + "name": "findStartDateInput", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "InputWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", + "name": "findStartTimeInput", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "InputWrapper", }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], + }, + { + "name": "findValidationError", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.keyup", + "name": "AbstractWrapper.getElement", }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], + "name": "getElement", + "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "string", }, }, { @@ -83913,44388 +86038,413 @@ Component's wrapper class", }, ], "returnType": { - "name": "this | null", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, - ], - "name": "SpinnerWrapper", - }, - { - "methods": [ { "inheritedFrom": { - "name": "AbstractWrapper.blur", + "name": "AbstractWrapper.toSelector", }, - "name": "blur", + "name": "toSelector", "parameters": [], "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findCloseButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "name": "findHeader", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findHeaderActions", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findHeaderBefore", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findHeaderDescription", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findHeaderInfo", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findOpenButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the same panel if it's currently open in bottom position. If not, it returns null. -Use this method to assert the panel position.", - "name": "findOpenPanelBottom", - "parameters": [], - "returnType": { - "name": "SplitPanelWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the same panel if it's currently open in side position. If not, it returns null. -Use this method to assert the panel position.", - "name": "findOpenPanelSide", - "parameters": [], - "returnType": { - "name": "SplitPanelWrapper | null", - "type": "union", - }, - }, - { - "name": "findPreferencesButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper | null", - "type": "union", - }, - }, - { - "name": "findSlider", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "HTMLElement", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keyup", - }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "this | null", - "type": "union", - }, - }, - ], - "name": "SplitPanelWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.blur", - }, - "name": "blur", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", + "isNullable": false, + "name": "string", }, }, + ], + "name": "DrpDropdownWrapper", + }, + { + "methods": [ { "inheritedFrom": { "name": "AbstractWrapper.find", }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "HTMLButtonElement", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keyup", - }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "this | null", - "type": "union", - }, - }, - ], - "name": "StatusIndicatorWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.blur", - }, - "name": "blur", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "description": "Finds the details of a step", - "name": "findDetails", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Finds the header of a step", - "name": "findHeader", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "HTMLElement", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keyup", - }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "this | null", - "type": "union", - }, - }, - ], - "name": "StepWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.blur", - }, - "name": "blur", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "description": "Finds all step items", - "name": "findItems", - "parameters": [], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "StepWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "HTMLElement", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keyup", - }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "this | null", - "type": "union", - }, - }, - ], - "name": "StepsWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.blur", - }, - "name": "blur", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the column that is used for ascending sorting.", - "name": "findAscSortedColumn", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns a table cell based on given row and column indices.", - "name": "findBodyCell", - "parameters": [ - { - "description": " -1-based index of the row of the cell to select.", - "flags": { - "isOptional": false, - }, - "name": "rowIndex", - "typeName": "number", - }, - { - "description": " -1-based index of the column of the cell to select. -", - "flags": { - "isOptional": false, - }, - "name": "columnIndex", - "typeName": "number", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findCollectionPreferences", - "parameters": [], - "returnType": { - "name": "CollectionPreferencesWrapper | null", - "type": "union", - }, - }, - { - "name": "findColumnHeaders", - "parameters": [], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns the element the user clicks when resizing a column.", - "name": "findColumnResizer", - "parameters": [ - { - "description": " -1-based index of the column containing the resizer. -", - "flags": { - "isOptional": false, - }, - "name": "columnIndex", - "typeName": "number", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findColumnSortingArea", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "colIndex", - "typeName": "number", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the column that is used for descending sorting.", - "name": "findDescSortedColumn", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the button that activates inline editing for a table cell based on given row and column indices.", - "name": "findEditCellButton", - "parameters": [ - { - "description": " -1-based index of the row of the cell to select.", - "flags": { - "isOptional": false, - }, - "name": "rowIndex", - "typeName": "number", - }, - { - "description": " -1-based index of the column of the cell to select. -", - "flags": { - "isOptional": false, - }, - "name": "columnIndex", - "typeName": "number", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findEditingCell", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findEditingCellCancelButton", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findEditingCellSaveButton", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Alias for findEmptySlot method for compatibility with previous versions", - "name": "findEmptyRegion", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findEmptySlot", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the expandable row toggle button.", - "name": "findExpandToggle", - "parameters": [ - { - "description": " -1-based index of the row. -", - "flags": { - "isOptional": false, - }, - "name": "rowIndex", - "typeName": "number", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findFilterSlot", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findFooterSlot", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Alias for findHeaderSlot method for compatibility with previous versions", - "name": "findHeaderRegion", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findHeaderSlot", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns items loader of the specific item (matched by item's track ID).", - "name": "findItemsLoaderByItemId", - "parameters": [ - { - "description": " -the (expandable) item ID provided with \`trackBy\` property. - -Note: when used with collection-hooks the \`trackBy\` is set automatically from \`expandableRows.getId\`. -", - "flags": { - "isOptional": false, - }, - "name": "itemId", - "typeName": "string", - }, - ], - "returnType": { - "name": "null | ElementWrapper", - "type": "union", - }, - }, - { - "name": "findLoadingText", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findPagination", - "parameters": [], - "returnType": { - "name": "PaginationWrapper | null", - "type": "union", - }, - }, - { - "name": "findPropertyFilter", - "parameters": [], - "returnType": { - "name": "PropertyFilterWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns items loader of the root table level.", - "name": "findRootItemsLoader", - "parameters": [], - "returnType": { - "name": "null | ElementWrapper", - "type": "union", - }, - }, - { - "description": "Returns a row selection area for a given index.", - "name": "findRowSelectionArea", - "parameters": [ - { - "description": " -1-based index of the row selection area to return. -", - "flags": { - "isOptional": false, - }, - "name": "rowIndex", - "typeName": "number", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findRows", - "parameters": [], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "name": "findSelectAllTrigger", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findSelectedRows", - "parameters": [], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "name": "findTextFilter", - "parameters": [], - "returnType": { - "name": "TextFilterWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "HTMLElement", - "type": "reference", - }, - }, - { - "description": "Returns \`true\` if the row expand toggle is present and expanded. Returns \`false\` otherwise.", - "name": "isRowToggled", - "parameters": [ - { - "description": " -1-based index of the row. -", - "flags": { - "isOptional": false, - }, - "name": "rowIndex", - "typeName": "number", - }, - ], - "returnType": { - "name": "boolean", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keyup", - }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "this | null", - "type": "union", - }, - }, - ], - "name": "TableWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.blur", - }, - "name": "blur", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "name": "findDisabledReason", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "HTMLElement", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keyup", - }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "this | null", - "type": "union", - }, - }, - ], - "name": "TabWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.blur", - }, - "name": "blur", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Finds the tab action by using the tab id", - "name": "findActionByTabId", - "parameters": [ - { - "description": " -ID of the clickable element to return -", - "flags": { - "isOptional": false, - }, - "name": "id", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Finds the tab action by using the tab index", - "name": "findActionByTabIndex", - "parameters": [ - { - "description": " -1-based index of the clickable element to return -", - "flags": { - "isOptional": false, - }, - "name": "index", - "typeName": "number", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findActions", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Finds the currently active tab and returns the clickable element from its tab label.", - "name": "findActiveTab", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Finds the tab action for the active tab", - "name": "findActiveTabAction", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Finds the dismissible button for the active tab", - "name": "findActiveTabDismissibleButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "description": "Finds the dismissible button by using the tab id", - "name": "findDismissibleButtonByTabId", - "parameters": [ - { - "description": " -ID of the clickable element to return -", - "flags": { - "isOptional": false, - }, - "name": "id", - "typeName": "string", - }, - ], - "returnType": { - "name": "ButtonWrapper | null", - "type": "union", - }, - }, - { - "description": "Finds the dismissible button by using the tab index.", - "name": "findDismissibleButtonByTabIndex", - "parameters": [ - { - "description": " -1-based index of the clickable element to return -", - "flags": { - "isOptional": false, - }, - "name": "index", - "typeName": "number", - }, - ], - "returnType": { - "name": "ButtonWrapper | null", - "type": "union", - }, - }, - { - "description": "Finds the currently focused tab, which might not be active if disabled with a reason.", - "name": "findFocusedTab", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Finds the currently displayed tab content and returns it.", - "name": "findTabContent", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Finds the tab header container at the given position (1-based) and returns the element.", - "name": "findTabHeaderContentByIndex", - "parameters": [ - { - "description": " -1-based index of the clickable element to return -", - "flags": { - "isOptional": false, - }, - "name": "index", - "typeName": "number", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Finds the tab with the given ID and returns the clickable element from its tab label.", - "name": "findTabLinkById", - "parameters": [ - { - "description": " -ID of the clickable element to return -", - "flags": { - "isOptional": false, - }, - "name": "id", - "typeName": "string", - }, - ], - "returnType": { - "name": "TabWrapper | null", - "type": "union", - }, - }, - { - "description": "Finds the tab at the given position (1-based) and returns the clickable element from its tab label.", - "name": "findTabLinkByIndex", - "parameters": [ - { - "description": " -1-based index of the clickable element to return -", - "flags": { - "isOptional": false, - }, - "name": "index", - "typeName": "number", - }, - ], - "returnType": { - "name": "TabWrapper | null", - "type": "union", - }, - }, - { - "description": "Finds all tab headers and returns the clickable elements from their labels.", - "name": "findTabLinks", - "parameters": [], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "HTMLButtonElement", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keyup", - }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "this | null", - "type": "union", - }, - }, - ], - "name": "TabsWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.blur", - }, - "name": "blur", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AttributeEditorRowWrapper.findCustomAction", - }, - "name": "findCustomAction", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns a field for a given index", - "inheritedFrom": { - "name": "AttributeEditorRowWrapper.findField", - }, - "name": "findField", - "parameters": [ - { - "description": " -1-based column index -", - "flags": { - "isOptional": false, - }, - "name": "column", - "typeName": "number", - }, - ], - "returnType": { - "name": "FormFieldWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns all fields. Fields are supplied in the \`definition\` property of the component.", - "inheritedFrom": { - "name": "AttributeEditorRowWrapper.findFields", - }, - "name": "findFields", - "parameters": [], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "FormFieldWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AttributeEditorRowWrapper.findRemoveButton", - }, - "name": "findRemoveButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper | null", - "type": "union", - }, - }, - { - "name": "findUndoButton", - "parameters": [], - "returnType": { - "name": "LinkWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "HTMLElement", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keyup", - }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "this | null", - "type": "union", - }, - }, - ], - "name": "TagEditorRowWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.blur", - }, - "name": "blur", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AttributeEditorWrapper.findAddButton", - }, - "name": "findAddButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AttributeEditorWrapper.findAdditionalInfo", - }, - "name": "findAdditionalInfo", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AttributeEditorWrapper.findEmptySlot", - }, - "name": "findEmptySlot", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findLoadingText", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns a row for a given index.", - "name": "findRow", - "parameters": [ - { - "description": " -1-based row index -", - "flags": { - "isOptional": false, - }, - "name": "row", - "typeName": "number", - }, - ], - "returnType": { - "name": "TagEditorRowWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns all rows. -To find a specific row use the \`findRow(n)\` function as chaining \`findRows().get(n)\` can return unexpected results.", - "name": "findRows", - "parameters": [], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "TagEditorRowWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "HTMLElement", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keyup", - }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "this | null", - "type": "union", - }, - }, - ], - "name": "TagEditorWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.blur", - }, - "name": "blur", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "HTMLSpanElement", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keyup", - }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "this | null", - "type": "union", - }, - }, - ], - "name": "TextContentWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.blur", - }, - "name": "blur", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "name": "findInput", - "parameters": [], - "returnType": { - "name": "InputWrapper", - "type": "reference", - }, - }, - { - "name": "findResultsCount", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "HTMLElement", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keyup", - }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "this | null", - "type": "union", - }, - }, - ], - "name": "TextFilterWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.blur", - }, - "name": "blur", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "name": "findNativeTextarea", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "HTMLTextAreaElement", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "HTMLTextAreaElement", - "type": "reference", - }, - }, - { - "description": "Gets the value of the component. -Returns the current value of the textarea. -", - "name": "getTextareaValue", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keyup", - }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "this | null", - "type": "union", - }, - }, - { - "description": "Sets the value of the component and calls the onChange handler.", - "name": "setTextareaValue", - "parameters": [ - { - "description": " -value to set the textarea to. -", - "flags": { - "isOptional": false, - }, - "name": "value", - "typeName": "string", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - ], - "name": "TextareaWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.blur", - }, - "name": "blur", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "name": "findInputByValue", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "value", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findItemByValue", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "value", - "typeName": "string", - }, - ], - "returnType": { - "name": "TileWrapper | null", - "type": "union", - }, - }, - { - "name": "findItems", - "parameters": [], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "TileWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "HTMLElement", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keyup", - }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "this | null", - "type": "union", - }, - }, - ], - "name": "TilesWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.blur", - }, - "name": "blur", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "name": "findDescription", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findImage", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findLabel", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findNativeInput", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "HTMLElement", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keyup", - }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "this | null", - "type": "union", - }, - }, - ], - "name": "TileWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "BaseInputWrapper.blur", - }, - "name": "blur", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "BaseInputWrapper.findNativeInput", - }, - "name": "findNativeInput", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "HTMLInputElement", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "BaseInputWrapper.focus", - }, - "name": "focus", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "HTMLElement", - "type": "reference", - }, - }, - { - "description": "Gets the value of the component. -Returns the current value of the input. -", - "inheritedFrom": { - "name": "BaseInputWrapper.getInputValue", - }, - "name": "getInputValue", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "BaseInputWrapper.isDisabled", - }, - "name": "isDisabled", - "parameters": [], - "returnType": { - "name": "boolean", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keyup", - }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "this | null", - "type": "union", - }, - }, - { - "description": "Sets the value of the component and calls the \`onChange\` handler", - "inheritedFrom": { - "name": "BaseInputWrapper.setInputValue", - }, - "name": "setInputValue", - "parameters": [ - { - "description": " -The value the input is set to. -", - "flags": { - "isOptional": false, - }, - "name": "value", - "typeName": "string", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - ], - "name": "TimeInputWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.blur", - }, - "name": "blur", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "ButtonWrapper.findDisabledReason", - }, - "name": "findDisabledReason", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "ButtonWrapper.findLoadingIndicator", - }, - "name": "findLoadingIndicator", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "ButtonWrapper.findTextRegion", - }, - "name": "findTextRegion", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "HTMLButtonElement", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "ButtonWrapper.isDisabled", - }, - "name": "isDisabled", - "parameters": [], - "returnType": { - "name": "boolean", - "type": "intrinsic", - }, - }, - { - "name": "isPressed", - "parameters": [], - "returnType": { - "name": "boolean", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keyup", - }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "this | null", - "type": "union", - }, - }, - ], - "name": "ToggleButtonWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.blur", - }, - "name": "blur", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "name": "findDescription", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findLabel", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findNativeInput", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "HTMLInputElement", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "HTMLElement", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keyup", - }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "this | null", - "type": "union", - }, - }, - ], - "name": "ToggleWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.blur", - }, - "name": "blur", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "description": "Returns a token from the group for a given index.", - "name": "findToken", - "parameters": [ - { - "description": " -1-based index of the token to return. -", - "flags": { - "isOptional": false, - }, - "name": "tokenIndex", - "typeName": "number", - }, - ], - "returnType": { - "name": "TokenWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the token toggle button.", - "name": "findTokenToggle", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findTokens", - "parameters": [], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "TokenWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "HTMLElement", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keyup", - }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "this | null", - "type": "union", - }, - }, - ], - "name": "TokenGroupWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.blur", - }, - "name": "blur", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "name": "findDismiss", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findLabel", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findOption", - "parameters": [], - "returnType": { - "name": "OptionWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "HTMLElement", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keyup", - }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "this | null", - "type": "union", - }, - }, - ], - "name": "TokenWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.blur", - }, - "name": "blur", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findBackButton", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "name": "findDescription", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findDismissButton", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findMenuDropdownItemById", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "id", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findTitle", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findUtility", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "index", - "typeName": "number", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "HTMLElement", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keyup", - }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "this | null", - "type": "union", - }, - }, - ], - "name": "OverflowMenu", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.blur", - }, - "name": "blur", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "name": "findDescription", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Finds the disabled reason tooltip for a dropdown item. Returns null if no disabled item with \`disabledReason\` is highlighted.", - "inheritedFrom": { - "name": "ButtonDropdownWrapper.findDisabledReason", - }, - "name": "findDisabledReason", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Finds an expandable category in the open dropdown by category id. Returns null if there is no open dropdown. -This utility does not open the dropdown. To find dropdown items, call \`openDropdown()\` first. -", - "inheritedFrom": { - "name": "ButtonDropdownWrapper.findExpandableCategoryById", - }, - "name": "findExpandableCategoryById", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "id", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Finds the highlighted item in the open dropdown. Returns null if there is no open dropdown. -This utility does not open the dropdown. To find dropdown items, call \`openDropdown()\` first. -", - "inheritedFrom": { - "name": "ButtonDropdownWrapper.findHighlightedItem", - }, - "name": "findHighlightedItem", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Finds an item in the open dropdown by item id. Returns null if there is no open dropdown. -This utility does not open the dropdown. To find dropdown items, call \`openDropdown()\` first. -", - "inheritedFrom": { - "name": "ButtonDropdownWrapper.findItemById", - }, - "name": "findItemById", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "id", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Finds \`checked\` value of item in the open dropdown by item id. Returns null if there is no open dropdown or the item is not a checkbox item. -This utility does not open the dropdown. To find dropdown items, call \`openDropdown()\` first. -", - "inheritedFrom": { - "name": "ButtonDropdownWrapper.findItemCheckedById", - }, - "name": "findItemCheckedById", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "id", - "typeName": "string", - }, - ], - "returnType": { - "name": "string | null", - "type": "union", - }, - }, - { - "description": "Finds all the items in the open dropdown. Returns empty array if there is no open dropdown. -This utility does not open the dropdown. To find dropdown items, call \`openDropdown()\` first. -", - "inheritedFrom": { - "name": "ButtonDropdownWrapper.findItems", - }, - "name": "findItems", - "parameters": [], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "ButtonDropdownWrapper.findMainAction", - }, - "name": "findMainAction", - "parameters": [], - "returnType": { - "name": "null | ButtonWrapper", - "type": "union", - }, - }, - { - "name": "findNativeButton", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "HTMLButtonElement", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "ButtonDropdownWrapper.findOpenDropdown", - }, - "name": "findOpenDropdown", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findTitle", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "ButtonDropdownWrapper.findTriggerButton", - }, - "name": "findTriggerButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "HTMLElement", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keyup", - }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "this | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "ButtonDropdownWrapper.openDropdown", - }, - "name": "openDropdown", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - ], - "name": "TopNavigationMenuDropdownWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.blur", - }, - "name": "blur", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findButtonLinkType", - "parameters": [], - "returnType": { - "name": "LinkWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "name": "findMenuDropdownType", - "parameters": [], - "returnType": { - "name": "TopNavigationMenuDropdownWrapper | null", - "type": "union", - }, - }, - { - "name": "findPrimaryButtonType", - "parameters": [], - "returnType": { - "name": "ButtonWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "HTMLElement", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keyup", - }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "this | null", - "type": "union", - }, - }, - ], - "name": "TopNavigationUtilityWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.blur", - }, - "name": "blur", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "name": "findIdentityLink", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findLogo", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findOverflowMenu", - "parameters": [], - "returnType": { - "name": "OverflowMenu | null", - "type": "union", - }, - }, - { - "name": "findOverflowMenuButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper | null", - "type": "union", - }, - }, - { - "name": "findSearch", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findSearchButton", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findTitle", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findUtilities", - "parameters": [], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "TopNavigationUtilityWrapper", - "type": "reference", - }, - ], - }, - }, - { - "name": "findUtility", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "index", - "typeName": "number", - }, - ], - "returnType": { - "name": "TopNavigationUtilityWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "HTMLElement", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keyup", - }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "this | null", - "type": "union", - }, - }, - ], - "name": "TopNavigationWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.blur", - }, - "name": "blur", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Finds the actions slot of the tree view item.", - "name": "findActions", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Finds a visible child item by its ID.", - "name": "findChildItemById", - "parameters": [ - { - "description": " -of the item to find", - "flags": { - "isOptional": false, - }, - "name": "id", - "typeName": "string", - }, - { - "defaultValue": "{}", - "description": " - -* expanded (optional, boolean) - Use it to find the visible expanded or collapsed child item. -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], - "returnType": { - "name": "TreeViewItemWrapper | null", - "type": "union", - }, - }, - { - "description": "Finds all visible child items of the tree view item.", - "name": "findChildItems", - "parameters": [ - { - "defaultValue": "{}", - "description": " - -* expanded (optional, boolean) - Use it to find all visible expanded or collapsed child items. -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "TreeViewItemWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "description": "Finds the content slot of the tree view item.", - "name": "findContent", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Finds the icon slot of the tree view item.", - "name": "findIcon", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Finds the expand toggle of the tree view item.", - "name": "findItemToggle", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Finds the secondary content slot of the tree view item.", - "name": "findSecondaryContent", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "HTMLElement", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keyup", - }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "this | null", - "type": "union", - }, - }, - ], - "name": "TreeViewItemWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.blur", - }, - "name": "blur", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "description": "Finds a visible tree view item by its ID.", - "name": "findItemById", - "parameters": [ - { - "description": " -of the item to find", - "flags": { - "isOptional": false, - }, - "name": "id", - "typeName": "string", - }, - { - "defaultValue": "{}", - "description": " - -* expanded (optiona, boolean) - Use it to find the visible expanded or collapsed item. -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], - "returnType": { - "name": "TreeViewItemWrapper | null", - "type": "union", - }, - }, - { - "description": "Finds all visible tree view items.", - "name": "findItems", - "parameters": [ - { - "defaultValue": "{}", - "description": " - -* expanded (optional, boolean) - Use it to find all visible expanded or collapsed items. -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "TreeViewItemWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "HTMLElement", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keyup", - }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "this | null", - "type": "union", - }, - }, - ], - "name": "TreeViewWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.blur", - }, - "name": "blur", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findCompletionScreenDescription", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findCompletionScreenTitle", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "name": "findDismissButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper | null", - "type": "union", - }, - }, - { - "name": "findDownloadLink", - "parameters": [], - "returnType": { - "name": "LinkWrapper | null", - "type": "union", - }, - }, - { - "name": "findFeedbackLink", - "parameters": [], - "returnType": { - "name": "LinkWrapper | null", - "type": "union", - }, - }, - { - "name": "findTaskList", - "parameters": [], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "TutorialTaskWrapper", - "type": "reference", - }, - ], - }, - }, - { - "name": "findTutorials", - "parameters": [], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "TutorialItemWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "HTMLElement", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keyup", - }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "this | null", - "type": "union", - }, - }, - ], - "name": "TutorialPanelWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.blur", - }, - "name": "blur", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "name": "findSteps", - "parameters": [], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "name": "findStepsTitle", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findTitle", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "HTMLElement", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keyup", - }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "this | null", - "type": "union", - }, - }, - ], - "name": "TutorialTaskWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.blur", - }, - "name": "blur", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findCollapseButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper | null", - "type": "union", - }, - }, - { - "name": "findCompleted", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "name": "findDescription", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findExpandButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper | null", - "type": "union", - }, - }, - { - "name": "findLearnMoreLink", - "parameters": [], - "returnType": { - "name": "LinkWrapper | null", - "type": "union", - }, - }, - { - "name": "findPrerequisitesAlert", - "parameters": [], - "returnType": { - "name": "AlertWrapper | null", - "type": "union", - }, - }, - { - "name": "findStartButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper | null", - "type": "union", - }, - }, - { - "name": "findTitle", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "HTMLElement", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keyup", - }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "this | null", - "type": "union", - }, - }, - ], - "name": "TutorialItemWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.blur", - }, - "name": "blur", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "description": "Performs a click by triggering a mouse event. -Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled.", - "inheritedFrom": { - "name": "AbstractWrapper.click", - }, - "name": "click", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "params", - "typeName": "MouseEventInit", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "FormWrapper.findActions", - }, - "name": "findActions", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "array", - "type": "reference", - }, - }, - { - "description": "Returns the wrappers of all components that match the specified component type and the specified CSS selector. -If no CSS selector is specified, returns all of the components that match the specified component type. -If no matching component is found, returns an empty array.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findCancelButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - }, - }, - { - "description": "Returns the component wrapper matching the specified selector. -If the specified selector doesn't match any element, it returns \`null\`. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "FormWrapper.findContent", - }, - "name": "findContent", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "FormWrapper.findError", - }, - "name": "findError", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findHeader", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findInfo", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "description": "Returns a link for a given step number.", - "name": "findMenuNavigationLink", - "parameters": [ - { - "description": " -1-based step index", - "flags": { - "isOptional": false, - }, - "name": "stepNumber", - "typeName": "number", - }, - { - "description": " - - -[optional] State of the link. The method returns null if the specified step does not match the state. It can be - - "disabled": for disabled menu entries - - "active": for the active menu entry - - undefined: for any entry -", - "flags": { - "isOptional": true, - }, - "name": "state", - }, - ], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findMenuNavigationLinks", - "parameters": [], - "returnType": { - "name": "Array", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "name": "findPreviousButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper | null", - "type": "union", - }, - }, - { - "name": "findPrimaryButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - }, - }, - { - "name": "findSecondaryActions", - "parameters": [], - "returnType": { - "name": "ElementWrapper | null", - "type": "union", - }, - }, - { - "name": "findSkipToButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper | null", - "type": "union", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.fireEvent", - }, - "name": "fireEvent", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "event", - "typeName": "Event", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.focus", - }, - "name": "focus", - "parameters": [], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "HTMLElement", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keydown", - }, - "name": "keydown", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keypress", - }, - "name": "keypress", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.keyup", - }, - "name": "keyup", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "keyCode", - "typeName": "KeyCode", - }, - ], - "returnType": { - "name": "void", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "this | null", - "type": "union", - }, - }, - ], - "name": "WizardWrapper", - }, - ], -} -`; - -exports[`Test-utils selectors definitions match the snapshot 1`] = ` -{ - "classes": [ - { - "methods": [ - { - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "isNullable": false, - "name": "ElementWrapper", - }, - }, - { - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "isNullable": false, - "name": "MultiElementWrapper", - "typeArguments": [ - { - "name": "ElementWrapper", - }, - ], - }, - }, - { - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "isNullable": false, - "name": "MultiElementWrapper", - "typeArguments": [ - { - "name": "ElementWrapper", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "description": "CSS Selector", - "flags": { - "isOptional": true, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "isNullable": false, - "name": "MultiElementWrapper", - "typeArguments": [ - { - "name": "Wrapper", - }, - ], - }, - }, - { - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "isNullable": false, - "name": "ElementWrapper", - }, - }, - { - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "isNullable": false, - "name": "ElementWrapper", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. - -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", - "name": "findComponent", - "parameters": [ - { - "description": "CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": "Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "isNullable": false, - "name": "Wrapper", - }, - }, - { - "name": "getElement", - "parameters": [], - "returnType": { - "isNullable": false, - "name": "string", - }, - }, - { - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "isNullable": false, - "name": "ElementWrapper", - }, - }, - { - "name": "toSelector", - "parameters": [], - "returnType": { - "isNullable": false, - "name": "string", - }, - }, - ], - "name": "AbstractWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "isNullable": false, - "name": "ElementWrapper", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "isNullable": false, - "name": "MultiElementWrapper", - "typeArguments": [ - { - "name": "ElementWrapper", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "isNullable": false, - "name": "MultiElementWrapper", - "typeArguments": [ - { - "name": "ElementWrapper", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "description": "CSS Selector", - "flags": { - "isOptional": true, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "isNullable": false, - "name": "MultiElementWrapper", - "typeArguments": [ - { - "name": "Wrapper", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "isNullable": false, - "name": "ElementWrapper", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "isNullable": false, - "name": "ElementWrapper", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. - -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": "CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": "Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "isNullable": false, - "name": "Wrapper", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "isNullable": false, - "name": "string", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "isNullable": false, - "name": "ElementWrapper", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "isNullable": false, - "name": "string", - }, - }, - ], - "name": "ElementWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "isNullable": false, - "name": "ElementWrapper", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "isNullable": false, - "name": "MultiElementWrapper", - "typeArguments": [ - { - "name": "ElementWrapper", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "isNullable": false, - "name": "MultiElementWrapper", - "typeArguments": [ - { - "name": "ElementWrapper", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "description": "CSS Selector", - "flags": { - "isOptional": true, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "isNullable": false, - "name": "MultiElementWrapper", - "typeArguments": [ - { - "name": "Wrapper", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "isNullable": false, - "name": "ElementWrapper", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "isNullable": false, - "name": "ElementWrapper", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. - -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": "CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": "Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "isNullable": false, - "name": "Wrapper", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "isNullable": false, - "name": "string", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "isNullable": false, - "name": "ElementWrapper", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "isNullable": false, - "name": "string", - }, - }, - ], - "name": "ComponentWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "isNullable": false, - "name": "ElementWrapper", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "isNullable": false, - "name": "MultiElementWrapper", - "typeArguments": [ - { - "name": "ElementWrapper", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "isNullable": false, - "name": "MultiElementWrapper", - "typeArguments": [ - { - "name": "ElementWrapper", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "description": "CSS Selector", - "flags": { - "isOptional": true, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "isNullable": false, - "name": "MultiElementWrapper", - "typeArguments": [ - { - "name": "Wrapper", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "isNullable": false, - "name": "ElementWrapper", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "isNullable": false, - "name": "ElementWrapper", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. - -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": "CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": "Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "isNullable": false, - "name": "Wrapper", - }, - }, - { - "description": "Index is one-based because the method uses the :nth-child() CSS pseudo-class.", - "name": "get", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "index", - "typeName": "number", - }, - ], - "returnType": { - "isNullable": false, - "name": "T", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "isNullable": false, - "name": "string", - }, - }, - { - "name": "map", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "factory", - "typeName": "(wrapper: ElementWrapper) => T", - }, - ], - "returnType": { - "isNullable": false, - "name": "MultiElementWrapper", - "typeArguments": [ - { - "name": "T", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "isNullable": false, - "name": "ElementWrapper", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "isNullable": false, - "name": "string", - }, - }, - ], - "name": "MultiElementWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns the action button. -The action button is only rendered when the \`buttonText\` property is set. -", - "name": "findActionButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findActionSlot", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findContent", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns the dismiss button. -The dismiss button is only rendered when the \`dismissible\` property is set to \`true\`. -", - "name": "findDismissButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findHeader", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns the container node of the component.", - "name": "findRootElement", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "AlertWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findInfo", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findLink", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findText", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "AnchorItemWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findActiveAnchor", - "parameters": [], - "returnType": { - "name": "AnchorItemWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "name": "findAnchorByIndex", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "index", - "typeName": "number", - }, - ], - "returnType": { - "name": "AnchorItemWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findAnchorLinkByHref", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "href", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findAnchorNavigation", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findAnchorNavigationList", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findAnchors", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "AnchorItemWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "AnchorNavigationWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findContent", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findDismissButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findFinishButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findHeader", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findNextButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findPreviousButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findStepCounter", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "AnnotationWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AppLayoutWrapper.findActiveDrawer", - }, - "name": "findActiveDrawer", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AppLayoutWrapper.findActiveDrawerCloseButton", - }, - "name": "findActiveDrawerCloseButton", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AppLayoutWrapper.findActiveDrawerResizeHandle", - }, - "name": "findActiveDrawerResizeHandle", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AppLayoutWrapper.findBreadcrumbs", - }, - "name": "findBreadcrumbs", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "inheritedFrom": { - "name": "AppLayoutWrapper.findContentRegion", - }, - "name": "findContentRegion", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Finds a drawer trigger by the given id.", - "inheritedFrom": { - "name": "AppLayoutWrapper.findDrawerTriggerById", - }, - "name": "findDrawerTriggerById", - "parameters": [ - { - "description": " -id of the trigger to find", - "flags": { - "isOptional": false, - }, - "name": "id", - "typeName": "string", - }, - { - "defaultValue": "{}", - "description": " - -* hasBadge (boolean) - If provided, only finds drawers with the badge or without badge respectively -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AppLayoutWrapper.findDrawerTriggerTooltip", - }, - "name": "findDrawerTriggerTooltip", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AppLayoutWrapper.findDrawersOverflowTrigger", - }, - "name": "findDrawersOverflowTrigger", - "parameters": [], - "returnType": { - "name": "ButtonDropdownWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AppLayoutWrapper.findDrawersTriggers", - }, - "name": "findDrawersTriggers", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AppLayoutWrapper.findNavigation", - }, - "name": "findNavigation", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AppLayoutWrapper.findNavigationClose", - }, - "name": "findNavigationClose", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AppLayoutWrapper.findNavigationToggle", - }, - "name": "findNavigationToggle", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AppLayoutWrapper.findNotifications", - }, - "name": "findNotifications", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AppLayoutWrapper.findOpenNavigationPanel", - }, - "name": "findOpenNavigationPanel", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AppLayoutWrapper.findOpenToolsPanel", - }, - "name": "findOpenToolsPanel", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AppLayoutWrapper.findSplitPanel", - }, - "name": "findSplitPanel", - "parameters": [], - "returnType": { - "name": "SplitPanelWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AppLayoutWrapper.findSplitPanelOpenButton", - }, - "name": "findSplitPanelOpenButton", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AppLayoutWrapper.findToolbar", - }, - "name": "findToolbar", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AppLayoutWrapper.findTools", - }, - "name": "findTools", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AppLayoutWrapper.findToolsClose", - }, - "name": "findToolsClose", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AppLayoutWrapper.findToolsToggle", - }, - "name": "findToolsToggle", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "AppLayoutToolbarWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findActiveDrawer", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findActiveDrawerCloseButton", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findActiveDrawerResizeHandle", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findBreadcrumbs", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findContentRegion", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Finds a drawer trigger by the given id.", - "name": "findDrawerTriggerById", - "parameters": [ - { - "description": " -id of the trigger to find", - "flags": { - "isOptional": false, - }, - "name": "id", - "typeName": "string", - }, - { - "defaultValue": "{}", - "description": " - -* hasBadge (boolean) - If provided, only finds drawers with the badge or without badge respectively -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findDrawerTriggerTooltip", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findDrawersOverflowTrigger", - "parameters": [], - "returnType": { - "name": "ButtonDropdownWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findDrawersTriggers", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "name": "findNavigation", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findNavigationClose", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findNavigationToggle", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findNotifications", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findOpenNavigationPanel", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findOpenToolsPanel", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findSplitPanel", - "parameters": [], - "returnType": { - "name": "SplitPanelWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findSplitPanelOpenButton", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findToolbar", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findTools", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findToolsClose", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findToolsToggle", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "AppLayoutWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a focusable element that controls keyboard interactions.", - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findApplication", - }, - "name": "findApplication", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findChart", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "inheritedFrom": { - "name": "CommonChartWrapper.findDefaultFilter", - }, - "name": "findDefaultFilter", - "parameters": [], - "returnType": { - "name": "ChartFilterWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "CommonChartWrapper.findDetailPopover", - }, - "name": "findDetailPopover", - "parameters": [], - "returnType": { - "name": "ChartPopoverWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findFilterContainer", - }, - "name": "findFilterContainer", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findHighlightedSeries", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "CommonChartWrapper.findLegend", - }, - "name": "findLegend", - "parameters": [], - "returnType": { - "name": "ChartLegendWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns an array of chart series. Note that thresholds count as series as well.", - "name": "findSeries", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "CommonChartWrapper.findStatusContainer", - }, - "name": "findStatusContainer", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findXAxisTitle", - }, - "name": "findXAxisTitle", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findXTicks", - }, - "name": "findXTicks", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findYAxisTitle", - }, - "name": "findYAxisTitle", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findYTicks", - }, - "name": "findYTicks", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "AreaChartWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findCustomAction", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns a field for a given index", - "name": "findField", - "parameters": [ - { - "description": " -1-based column index -", - "flags": { - "isOptional": false, - }, - "name": "column", - "typeName": "number", - }, - ], - "returnType": { - "name": "FormFieldWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns all fields. Fields are supplied in the \`definition\` property of the component.", - "name": "findFields", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "FormFieldWrapper", - "type": "reference", - }, - ], - }, - }, - { - "name": "findRemoveButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "AttributeEditorRowWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findAddButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findAdditionalInfo", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findEmptySlot", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns a row for a given index.", - "name": "findRow", - "parameters": [ - { - "description": " -1-based row index -", - "flags": { - "isOptional": false, - }, - "name": "row", - "typeName": "number", - }, - ], - "returnType": { - "name": "AttributeEditorRowWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns all rows. -To find a specific row use the \`findRow(n)\` function as chaining \`findRows().get(n)\` can return unexpected results.", - "name": "findRows", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "AttributeEditorRowWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "AttributeEditorWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "description": "Returns all the selected options.", - "name": "findDisabledOptions", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "OptionWrapper", - "type": "reference", - }, - ], - }, - }, - { - "name": "findFooterRegion", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findHighlightedAriaLiveRegion", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns highlighted text fragments from all of the options. -Options get highlighted when they match the value of the input field.", - "name": "findHighlightedMatches", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "name": "findHighlightedOption", - "parameters": [], - "returnType": { - "name": "OptionWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findOpenDropdown", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns an option from the dropdown.", - "name": "findOption", - "parameters": [ - { - "description": " -1-based index of the option to select. -", - "flags": { - "isOptional": false, - }, - "name": "optionIndex", - "typeName": "number", - }, - ], - "returnType": { - "name": "OptionWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns an option from the autosuggest by it's value", - "name": "findOptionByValue", - "parameters": [ - { - "description": " -The 'value' of the option. -", - "flags": { - "isOptional": false, - }, - "name": "value", - "typeName": "string", - }, - ], - "returnType": { - "name": "OptionWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns an option from the dropdown.", - "name": "findOptionInGroup", - "parameters": [ - { - "description": " -1-based index of the group to select an option in.", - "flags": { - "isOptional": false, - }, - "name": "groupIndex", - "typeName": "number", - }, - { - "description": " -1-based index of the option to select. -", - "flags": { - "isOptional": false, - }, - "name": "optionIndex", - "typeName": "number", - }, - ], - "returnType": { - "name": "OptionWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findOptions", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "OptionWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Use this element to scroll through the list of options", - "name": "findOptionsContainer", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "AutosuggestDropdownWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "InputWrapper.findClearButton", - }, - "name": "findClearButton", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "description": "", - "name": "findDropdown", - "parameters": [ - { - "defaultValue": "{ - expandToViewport: false - }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], - "returnType": { - "name": "AutosuggestDropdownWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "", - "name": "findEnteredTextOption", - "parameters": [ - { - "defaultValue": "{ - expandToViewport: false - }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "", - "name": "findErrorRecoveryButton", - "parameters": [ - { - "defaultValue": "{ - expandToViewport: false - }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "BaseInputWrapper.findNativeInput", - }, - "name": "findNativeInput", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "", - "name": "findStatusIndicator", - "parameters": [ - { - "defaultValue": "{ - expandToViewport: false - }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "AutosuggestWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "description": "Returns all the selected options.", - "inheritedFrom": { - "name": "AutosuggestDropdownWrapper.findDisabledOptions", - }, - "name": "findDisabledOptions", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "OptionWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AutosuggestDropdownWrapper.findFooterRegion", - }, - "name": "findFooterRegion", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AutosuggestDropdownWrapper.findHighlightedAriaLiveRegion", - }, - "name": "findHighlightedAriaLiveRegion", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns highlighted text fragments from all of the options. -Options get highlighted when they match the value of the input field.", - "inheritedFrom": { - "name": "AutosuggestDropdownWrapper.findHighlightedMatches", - }, - "name": "findHighlightedMatches", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AutosuggestDropdownWrapper.findHighlightedOption", - }, - "name": "findHighlightedOption", - "parameters": [], - "returnType": { - "name": "OptionWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findOpenDropdown", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns an option from the dropdown.", - "inheritedFrom": { - "name": "AutosuggestDropdownWrapper.findOption", - }, - "name": "findOption", - "parameters": [ - { - "description": " -1-based index of the option to select. -", - "flags": { - "isOptional": false, - }, - "name": "optionIndex", - "typeName": "number", - }, - ], - "returnType": { - "name": "OptionWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns an option from the autosuggest by it's value", - "inheritedFrom": { - "name": "AutosuggestDropdownWrapper.findOptionByValue", - }, - "name": "findOptionByValue", - "parameters": [ - { - "description": " -The 'value' of the option. -", - "flags": { - "isOptional": false, - }, - "name": "value", - "typeName": "string", - }, - ], - "returnType": { - "name": "OptionWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns an option from the dropdown.", - "inheritedFrom": { - "name": "AutosuggestDropdownWrapper.findOptionInGroup", - }, - "name": "findOptionInGroup", - "parameters": [ - { - "description": " -1-based index of the group to select an option in.", - "flags": { - "isOptional": false, - }, - "name": "groupIndex", - "typeName": "number", - }, - { - "description": " -1-based index of the option to select. -", - "flags": { - "isOptional": false, - }, - "name": "optionIndex", - "typeName": "number", - }, - ], - "returnType": { - "name": "OptionWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AutosuggestDropdownWrapper.findOptions", - }, - "name": "findOptions", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "OptionWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Use this element to scroll through the list of options", - "inheritedFrom": { - "name": "AutosuggestDropdownWrapper.findOptionsContainer", - }, - "name": "findOptionsContainer", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "PortalAutosuggestDropdownWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "BadgeWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a focusable element that controls keyboard interactions.", - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findApplication", - }, - "name": "findApplication", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns an array of bar groups, which are used for mouse navigation if a chart contains bar series.", - "inheritedFrom": { - "name": "MixedLineBarChartWrapper.findBarGroups", - }, - "name": "findBarGroups", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findChart", - }, - "name": "findChart", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "inheritedFrom": { - "name": "CommonChartWrapper.findDefaultFilter", - }, - "name": "findDefaultFilter", - "parameters": [], - "returnType": { - "name": "ChartFilterWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "CommonChartWrapper.findDetailPopover", - }, - "name": "findDetailPopover", - "parameters": [], - "returnType": { - "name": "ChartPopoverWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findFilterContainer", - }, - "name": "findFilterContainer", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findHighlightedSeries", - }, - "name": "findHighlightedSeries", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "CommonChartWrapper.findLegend", - }, - "name": "findLegend", - "parameters": [], - "returnType": { - "name": "ChartLegendWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns an array of chart series. Note that thresholds count as series as well.", - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findSeries", - }, - "name": "findSeries", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "CommonChartWrapper.findStatusContainer", - }, - "name": "findStatusContainer", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findXAxisTitle", - }, - "name": "findXAxisTitle", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findXTicks", - }, - "name": "findXTicks", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findYAxisTitle", - }, - "name": "findYAxisTitle", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findYTicks", - }, - "name": "findYTicks", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "BarChartWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "BoxWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns an item for a given index. Note that this may return the 'current' page item for backwards compatibility, -even though it is not technically a link.", - "name": "findBreadcrumbLink", - "parameters": [ - { - "description": " -1-based item index -", - "flags": { - "isOptional": false, - }, - "name": "index", - "typeName": "number", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns all breadcrumb items. Note that this includes the 'current' page item for backwards compatibility, -even though it is not technically a link. -To find a specific item use the \`findBreadcrumbLink(n)\` function as chaining \`findBreadcrumbLinks().get(n)\` can return unexpected results.", - "name": "findBreadcrumbLinks", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findDropdown", - "parameters": [], - "returnType": { - "name": "ButtonDropdownWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "BreadcrumbGroupWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "description": "Finds the disabled reason tooltip for a dropdown item. Returns null if no disabled item with \`disabledReason\` is highlighted.", - "name": "findDisabledReason", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Finds an expandable category in the open dropdown by category id. Returns null if there is no open dropdown. -This utility does not open the dropdown. To find dropdown items, call \`openDropdown()\` first. -", - "name": "findExpandableCategoryById", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "id", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Finds the highlighted item in the open dropdown. Returns null if there is no open dropdown. -This utility does not open the dropdown. To find dropdown items, call \`openDropdown()\` first. -", - "name": "findHighlightedItem", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Finds an item in the open dropdown by item id. Returns null if there is no open dropdown. -This utility does not open the dropdown. To find dropdown items, call \`openDropdown()\` first. -", - "name": "findItemById", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "id", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Finds all the items in the open dropdown. Returns empty array if there is no open dropdown. -This utility does not open the dropdown. To find dropdown items, call \`openDropdown()\` first. -", - "name": "findItems", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "name": "findMainAction", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findNativeButton", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findOpenDropdown", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findTriggerButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "ButtonDropdownWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Finds a button item by its id.", - "name": "findButtonById", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "id", - "typeName": "string", - }, - ], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "description": "Finds a file input item by its id.", - "name": "findFileInputById", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "id", - "typeName": "string", - }, - ], - "returnType": { - "name": "FileInputWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Finds all button and menu items.", - "name": "findItems", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Finds a menu item by its id.", - "name": "findMenuById", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "id", - "typeName": "string", - }, - ], - "returnType": { - "name": "ButtonDropdownWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Finds a toggle button item by its id.", - "name": "findToggleButtonById", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "id", - "typeName": "string", - }, - ], - "returnType": { - "name": "ToggleButtonWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Finds the currently opened tooltip.", - "name": "findTooltip", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "ButtonGroupWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findDisabledReason", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findLoadingIndicator", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findTextRegion", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "ButtonWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findDisabledReason", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "CalendarDateWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "description": "Returns a date container on the calendar.", - "name": "findDateAt", - "parameters": [ - { - "description": " -1-based row index of the day or month.", - "flags": { - "isOptional": false, - }, - "name": "row", - "typeName": "number", - }, - { - "description": " -1-based column index of the day or month. -", - "flags": { - "isOptional": false, - }, - "name": "column", - "typeName": "number", - }, - ], - "returnType": { - "name": "CalendarDateWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findHeader", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findNextButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Alias for findNextButton for compatibility with previous versions", - "name": "findNextMonthButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findPreviousButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Alias for findPreviousButton for compatibility with previous versions", - "name": "findPreviousMonthButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findSelectedDate", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "CalendarWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findContent", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findSectionHeader", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "CardSectionWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findCardHeader", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "description": "Note: for integration/selector-based tests you should add \`1\` to the expected section index, -for example, \`.findSections().get(sectionIndex+1)\`. The \`get\` call in this context -is '2-indexed', that is, the first section in a card has an index of \`2\`.", - "name": "findSections", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "CardSectionWrapper", - "type": "reference", - }, - ], - }, - }, - { - "name": "findSelectionArea", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "CardWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findCollectionPreferences", - "parameters": [], - "returnType": { - "name": "CollectionPreferencesWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "description": "Alias for findEmptySlot method for compatibility with previous versions", - "name": "findEmptyRegion", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findEmptySlot", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findHeader", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Alias for findHeader method for compatibility with previous versions", - "name": "findHeaderRegion", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findItems", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "CardWrapper", - "type": "reference", - }, - ], - }, - }, - { - "name": "findLoadingText", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findPagination", - "parameters": [], - "returnType": { - "name": "PaginationWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findSelectedItems", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "CardWrapper", - "type": "reference", - }, - ], - }, - }, - { - "name": "findTextFilter", - "parameters": [], - "returnType": { - "name": "TextFilterWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "CardsWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findDescription", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findLabel", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findNativeInput", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "CheckboxWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findEditor", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findErrorScreen", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findErrorsTab", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findLoadingScreen", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findNativeTextArea", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findPane", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findSettingsButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findStatusBar", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findWarningsTab", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "CodeEditorWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "description": "Returns the drag handle for the option item.", - "name": "findDragHandle", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns the text label displayed in the option item.", - "name": "findLabel", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns the visibility toggle for the option item.", - "name": "findVisibilityToggle", - "parameters": [], - "returnType": { - "name": "ToggleWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "ContentDisplayOptionWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "description": "Returns the preference description displayed below the title.", - "name": "findDescription", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns no match with the clear filter button.", - "name": "findNoMatch", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns an option for a given index.", - "name": "findOptionByIndex", - "parameters": [ - { - "description": " -1-based index of the option to return. -", - "flags": { - "isOptional": false, - }, - "name": "index", - "typeName": "number", - }, - ], - "returnType": { - "name": "ContentDisplayOptionWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns options that the user can reorder.", - "name": "findOptions", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ContentDisplayOptionWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns the text filter input.", - "name": "findTextFilter", - "parameters": [], - "returnType": { - "name": "TextFilterWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns the title.", - "name": "findTitle", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "ContentDisplayPreferenceWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findModal", - "parameters": [], - "returnType": { - "name": "PreferencesModalWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findTriggerButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "CollectionPreferencesWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findCancelButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findConfirmButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "ModalWrapper.findContent", - }, - "name": "findContent", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findContentBefore", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findContentDensityPreference", - "parameters": [], - "returnType": { - "name": "CheckboxWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findContentDisplayPreference", - "parameters": [], - "returnType": { - "name": "ContentDisplayPreferenceWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findCustomPreference", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "ModalWrapper.findDismissButton", - }, - "name": "findDismissButton", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "ModalWrapper.findFooter", - }, - "name": "findFooter", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "ModalWrapper.findHeader", - }, - "name": "findHeader", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findPageSizePreference", - "parameters": [], - "returnType": { - "name": "PageSizePreferenceWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findStickyColumnsPreference", - "parameters": [ - { - "defaultValue": ""first"", - "flags": { - "isOptional": false, - }, - "name": "firstOrLast", - }, - ], - "returnType": { - "name": "StickyColumnsPreferenceWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findStripedRowsPreference", - "parameters": [], - "returnType": { - "name": "CheckboxWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findVisibleContentPreference", - "parameters": [], - "returnType": { - "name": "VisibleContentPreferenceWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findWrapLinesPreference", - "parameters": [], - "returnType": { - "name": "CheckboxWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "PreferencesModalWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findOptions", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "RadioButtonWrapper", - "type": "reference", - }, - ], - }, - }, - { - "name": "findTitle", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "PageSizePreferenceWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findDescription", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findRadioGroup", - "parameters": [], - "returnType": { - "name": "RadioGroupWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findTitle", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "StickyColumnsPreferenceWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findOptions", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "name": "findOptionsGroups", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "name": "findTitle", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns a content selector toggle.", - "name": "findToggleByIndex", - "parameters": [ - { - "description": " -1-based index of the content group.", - "flags": { - "isOptional": false, - }, - "name": "groupIndex", - "typeName": "number", - }, - { - "description": " -1-based index of the option to return within the group. -", - "flags": { - "isOptional": false, - }, - "name": "optionIndex", - "typeName": "number", - }, - ], - "returnType": { - "name": "ToggleWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "VisibleContentPreferenceWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a column from the grid for a given index.", - "inheritedFrom": { - "name": "GridWrapper.findColumn", - }, - "name": "findColumn", - "parameters": [ - { - "description": " -1-based index of the column to return. -", - "flags": { - "isOptional": false, - }, - "name": "columnIndex", - "typeName": "number", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "ColumnLayoutWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findContent", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findFooter", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findHeader", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findMedia", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "ContainerWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findBreadcrumbs", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findContent", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findHeader", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findNotifications", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findSecondaryHeader", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "ContentLayoutWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findCopyButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Used to get the text displayed next to the copy icon button when \`variant='inline'\`. -Returns either the \`textToCopy\` value or the \`textToDisplay\` value if it has been set.", - "name": "findDisplayedText", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findStatusText", - "parameters": [ - { - "defaultValue": "{ - popoverRenderWithPortal: false - }", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "", - "name": "findTextToCopy", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "CopyToClipboardWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "inheritedFrom": { - "name": "BaseInputWrapper.findNativeInput", - }, - "name": "findNativeInput", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "DateInputWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "", - "name": "findCalendar", - "parameters": [ - { - "defaultValue": "{ - expandToViewport: false - }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], - "returnType": { - "name": "CalendarWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findCalendarDropdown", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "inheritedFrom": { - "name": "BaseInputWrapper.findNativeInput", - }, - "name": "findNativeInput", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findOpenCalendarButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "DatePickerWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findDisabledReason", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "CalendarDateWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "description": "", - "name": "findDropdown", - "parameters": [ - { - "defaultValue": "{ - expandToViewport: false - }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], - "returnType": { - "name": "DrpDropdownWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Alias for \`findTrigger\`", - "name": "findLabel", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns the trigger element that can be used to open the picker dropdown.", - "name": "findTrigger", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "DateRangePickerWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findApplyButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findCancelButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findClearButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "description": "Returns the day container that corresponds to the current day.", - "name": "findCurrentDay", - "parameters": [], - "returnType": { - "name": "CalendarDateWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns the month container that corresponds to the current month.", - "name": "findCurrentMonth", - "parameters": [], - "returnType": { - "name": "CalendarDateWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findCustomRelativeRangeDuration", - "parameters": [], - "returnType": { - "name": "InputWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findCustomRelativeRangeUnit", - "parameters": [], - "returnType": { - "name": "SelectWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns a day container on the calendar.", - "name": "findDateAt", - "parameters": [ - { - "description": " -the calendar grid. If only one calendar grid is visible (on small screens), use \`'right'\`.", - "flags": { - "isOptional": false, - }, - "name": "grid", - }, - { - "description": " -1-based row index of the day.", - "flags": { - "isOptional": false, - }, - "name": "row", - }, - { - "description": " -1-based column index of the day. -", - "flags": { - "isOptional": false, - }, - "name": "column", - }, - ], - "returnType": { - "name": "CalendarDateWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findEndDateInput", - "parameters": [], - "returnType": { - "name": "InputWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findEndTimeInput", - "parameters": [], - "returnType": { - "name": "InputWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findHeader", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns a month container on the calendar.", - "name": "findMonthAt", - "parameters": [ - { - "description": " -the calendar grid. If only one calendar grid is visible (on small screens), use \`'right'\`.", - "flags": { - "isOptional": false, - }, - "name": "grid", - }, - { - "description": " -1-based row index of the month.", - "flags": { - "isOptional": false, - }, - "name": "row", - }, - { - "description": " -1-based column index of the month. -", - "flags": { - "isOptional": false, - }, - "name": "column", - }, - ], - "returnType": { - "name": "CalendarDateWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findNextButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Alias for findNextButton for compatibility with previous versions.", - "name": "findNextMonthButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findPreviousButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Alias for findPreviousButton for compatibility with previous versions.", - "name": "findPreviousMonthButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findRelativeRangeRadioGroup", - "parameters": [], - "returnType": { - "name": "RadioGroupWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findSelectedEndDate", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findSelectedStartDate", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findSelectionModeSwitch", - "parameters": [], - "returnType": { - "name": "SelectionModeSwitchWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findStartDateInput", - "parameters": [], - "returnType": { - "name": "InputWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findStartTimeInput", - "parameters": [], - "returnType": { - "name": "InputWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findValidationError", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "DrpDropdownWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "description": "Returns the mode selector as a SegmentedControl wrapper. -The mode selector is only rendered as a SegmentedControl on wide viewports. On narrow viewports, use \`findModesAsSelect()\` instead. -", - "name": "findModesAsSegments", - "parameters": [], - "returnType": { - "name": "SegmentedControlWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns the mode selector as a Select wrapper. -The mode selector is only rendered as a Select on narrow viewports. On wide viewports, use \`findModesAsSegments()\` instead.", - "name": "findModesAsSelect", - "parameters": [], - "returnType": { - "name": "SelectWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "SelectionModeSwitchWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findContent", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findHeader", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findHeaderActions", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "DrawerWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findContent", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findExpandButton", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findExpandIcon", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findExpandedContent", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findHeader", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findHeaderDescription", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findHeaderText", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "ExpandableSectionWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findContent", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "FileDropzoneWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findNativeInput", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findTrigger", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "FileInputWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "description": "Returns a file token from for a given index.", - "name": "findFileToken", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "fileTokenIndex", - "typeName": "number", - }, - ], - "returnType": { - "name": "FileTokenWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findFileTokens", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "FileTokenWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "FileTokenGroupWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findFileError", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findFileLastModified", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findFileName", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findFileSize", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findFileThumbnail", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findFileWarning", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findRemoveButton", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "FileTokenWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findConstraint", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findError", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns a file token from for a given index.", - "name": "findFileToken", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "fileTokenIndex", - "typeName": "number", - }, - ], - "returnType": { - "name": "FileTokenWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findFileTokens", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "FileTokenWrapper", - "type": "reference", - }, - ], - }, - }, - { - "name": "findNativeInput", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns the token toggle button.", - "name": "findTokenToggle", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findUploadButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findWarning", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "FileUploadWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns the action slot.", - "name": "findAction", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns the action button. -The action button is only rendered when the \`buttonText\` property is set. -", - "name": "findActionButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findContent", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns the dismiss button. -The dismiss button is only rendered when the \`dismissible\` property is set to \`true\`. -", - "name": "findDismissButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findHeader", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "FlashWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "description": "Returns the individual flashes of this flashbar. -If the items are stacked, only the item at the top of the stack is returned. -", - "name": "findItems", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "FlashWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns the individual flashes of this flashbar given the item type. -If the items are stacked, only the item at the top of the stack is returned. - -If an item is loading its type is considered as "info". -", - "name": "findItemsByType", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "type", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "FlashWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns the toggle button that expands and collapses stacked notifications.", - "name": "findToggleButton", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "FlashbarWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findConstraint", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findControl", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findDescription", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findError", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findInfo", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findLabel", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findSecondaryControl", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findWarning", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "FormFieldWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findActions", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findContent", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findError", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findHeader", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findSecondaryActions", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "FormWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a column from the grid for a given index.", - "name": "findColumn", - "parameters": [ - { - "description": " -1-based index of the column to return. -", - "flags": { - "isOptional": false, - }, - "name": "columnIndex", - "typeName": "number", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "GridWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findActions", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findCounter", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findDescription", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findHeadingText", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findInfo", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "HeaderWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findContent", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findFooter", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findHeader", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "HelpPanelWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "name": "findAnnotation", - "parameters": [], - "returnType": { - "name": "AnnotationWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findTrigger", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "HotspotWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "IconWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findNativeInput", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "BaseInputWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findClearButton", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "inheritedFrom": { - "name": "BaseInputWrapper.findNativeInput", - }, - "name": "findNativeInput", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "InputWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findDescription", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findLabel", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findNativeInput", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "AbstractSwitchWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findDropdown", - "parameters": [], - "returnType": { - "name": "DropdownWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findInput", - "parameters": [], - "returnType": { - "name": "InputWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "AutosuggestInputWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "description": "", - "inheritedFrom": { - "name": "DropdownHostComponentWrapper.findDropdown", - }, - "name": "findDropdown", - "parameters": [ - { - "defaultValue": "{ - expandToViewport: false - }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], - "returnType": { - "name": "DropdownContentWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findPlaceholder", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findTrigger", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "ChartFilterWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findHighlightedItem", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findItems", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "name": "findNativeList", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findTitle", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "ChartLegendWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findKey", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findValue", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "ChartPopoverSeriesItemWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "inheritedFrom": { - "name": "ChartPopoverSeriesItemWrapper.findKey", - }, - "name": "findKey", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findSubItems", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ChartPopoverSeriesItemWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "ChartPopoverSeriesItemWrapper.findValue", - }, - "name": "findValue", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "ChartPopoverSeriesWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findContent", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findDismissButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findHeader", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findSeries", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ChartPopoverSeriesWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "ChartPopoverWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findBody", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findDismissButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findFooter", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findHeader", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "ChartTooltipWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findDefaultFilter", - "parameters": [], - "returnType": { - "name": "ChartFilterWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findDetailPopover", - "parameters": [], - "returnType": { - "name": "ChartPopoverWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findLegend", - "parameters": [], - "returnType": { - "name": "ChartLegendWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findStatusContainer", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "CommonChartWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "name": "findAllVisibleDirectionButtons", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findVisibleDirectionButtonBlockEnd", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findVisibleDirectionButtonBlockStart", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findVisibleDirectionButtonInlineEnd", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findVisibleDirectionButtonInlineStart", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "DragHandleWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Alerts with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Alerts.", - "inheritedFrom": { - "name": "ElementWrapper.findAlert", - }, - "name": "findAlert", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "AlertWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllAlerts", - }, - "name": "findAllAlerts", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "AlertWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllAnchorNavigations", - }, - "name": "findAllAnchorNavigations", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "AnchorNavigationWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllAnnotations", - }, - "name": "findAllAnnotations", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "AnnotationWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllAppLayoutToolbars", - }, - "name": "findAllAppLayoutToolbars", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "AppLayoutToolbarWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllAppLayouts", - }, - "name": "findAllAppLayouts", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "AppLayoutWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllAreaCharts", - }, - "name": "findAllAreaCharts", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "AreaChartWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllAttributeEditors", - }, - "name": "findAllAttributeEditors", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "AttributeEditorWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllAutosuggests", - }, - "name": "findAllAutosuggests", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "AutosuggestWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllBadges", - }, - "name": "findAllBadges", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "BadgeWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllBarCharts", - }, - "name": "findAllBarCharts", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "BarChartWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllBoxes", - }, - "name": "findAllBoxes", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "BoxWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllBreadcrumbGroups", - }, - "name": "findAllBreadcrumbGroups", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "BreadcrumbGroupWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllButtonDropdowns", - }, - "name": "findAllButtonDropdowns", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ButtonDropdownWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllButtonGroups", - }, - "name": "findAllButtonGroups", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ButtonGroupWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllButtons", - }, - "name": "findAllButtons", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ButtonWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllCalendars", - }, - "name": "findAllCalendars", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "CalendarWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllCards", - }, - "name": "findAllCards", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "CardsWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllCheckboxes", - }, - "name": "findAllCheckboxes", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "CheckboxWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllCodeEditors", - }, - "name": "findAllCodeEditors", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "CodeEditorWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllCollectionPreferences", - }, - "name": "findAllCollectionPreferences", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "CollectionPreferencesWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllColumnLayouts", - }, - "name": "findAllColumnLayouts", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ColumnLayoutWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllContainers", - }, - "name": "findAllContainers", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ContainerWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllContentLayouts", - }, - "name": "findAllContentLayouts", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ContentLayoutWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllCopyToClipboards", - }, - "name": "findAllCopyToClipboards", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "CopyToClipboardWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllDateInputs", - }, - "name": "findAllDateInputs", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "DateInputWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllDatePickers", - }, - "name": "findAllDatePickers", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "DatePickerWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllDateRangePickers", - }, - "name": "findAllDateRangePickers", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "DateRangePickerWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllDrawers", - }, - "name": "findAllDrawers", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "DrawerWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllExpandableSections", - }, - "name": "findAllExpandableSections", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ExpandableSectionWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllFileDropzones", - }, - "name": "findAllFileDropzones", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "FileDropzoneWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllFileInputs", - }, - "name": "findAllFileInputs", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "FileInputWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllFileTokenGroups", - }, - "name": "findAllFileTokenGroups", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "FileTokenGroupWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllFileUploads", - }, - "name": "findAllFileUploads", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "FileUploadWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllFlashbars", - }, - "name": "findAllFlashbars", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "FlashbarWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllFormFields", - }, - "name": "findAllFormFields", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "FormFieldWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllForms", - }, - "name": "findAllForms", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "FormWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllGrids", - }, - "name": "findAllGrids", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "GridWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllHeaders", - }, - "name": "findAllHeaders", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "HeaderWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllHelpPanels", - }, - "name": "findAllHelpPanels", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "HelpPanelWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllHotspots", - }, - "name": "findAllHotspots", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "HotspotWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllIcons", - }, - "name": "findAllIcons", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "IconWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllInputs", - }, - "name": "findAllInputs", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "InputWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllKeyValuePairs", - }, - "name": "findAllKeyValuePairs", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "KeyValuePairsWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllLineCharts", - }, - "name": "findAllLineCharts", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "LineChartWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllLinks", - }, - "name": "findAllLinks", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "LinkWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllLists", - }, - "name": "findAllLists", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ListWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllLiveRegions", - }, - "name": "findAllLiveRegions", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "LiveRegionWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllMixedLineBarCharts", - }, - "name": "findAllMixedLineBarCharts", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "MixedLineBarChartWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllModals", - }, - "name": "findAllModals", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ModalWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllMultiselects", - }, - "name": "findAllMultiselects", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "MultiselectWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllPaginations", - }, - "name": "findAllPaginations", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "PaginationWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllPieCharts", - }, - "name": "findAllPieCharts", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "PieChartWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllPopovers", - }, - "name": "findAllPopovers", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "PopoverWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllProgressBars", - }, - "name": "findAllProgressBars", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ProgressBarWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllPromptInputs", - }, - "name": "findAllPromptInputs", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "PromptInputWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllPropertyFilters", - }, - "name": "findAllPropertyFilters", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "PropertyFilterWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllRadioGroups", - }, - "name": "findAllRadioGroups", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "RadioGroupWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllS3ResourceSelectors", - }, - "name": "findAllS3ResourceSelectors", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "S3ResourceSelectorWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllSegmentedControls", - }, - "name": "findAllSegmentedControls", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "SegmentedControlWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllSelects", - }, - "name": "findAllSelects", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "SelectWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllSideNavigations", - }, - "name": "findAllSideNavigations", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "SideNavigationWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllSliders", - }, - "name": "findAllSliders", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "SliderWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllSpaceBetweens", - }, - "name": "findAllSpaceBetweens", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "SpaceBetweenWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllSpinners", - }, - "name": "findAllSpinners", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "SpinnerWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllSplitPanels", - }, - "name": "findAllSplitPanels", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "SplitPanelWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllStatusIndicators", - }, - "name": "findAllStatusIndicators", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "StatusIndicatorWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllSteps", - }, - "name": "findAllSteps", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "StepsWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTables", - }, - "name": "findAllTables", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "TableWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTabs", - }, - "name": "findAllTabs", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "TabsWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTagEditors", - }, - "name": "findAllTagEditors", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "TagEditorWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTextContents", - }, - "name": "findAllTextContents", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "TextContentWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTextFilters", - }, - "name": "findAllTextFilters", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "TextFilterWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTextareas", - }, - "name": "findAllTextareas", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "TextareaWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTiles", - }, - "name": "findAllTiles", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "TilesWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTimeInputs", - }, - "name": "findAllTimeInputs", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "TimeInputWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllToggleButtons", - }, - "name": "findAllToggleButtons", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ToggleButtonWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllToggles", - }, - "name": "findAllToggles", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ToggleWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTokenGroups", - }, - "name": "findAllTokenGroups", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "TokenGroupWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTopNavigations", - }, - "name": "findAllTopNavigations", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "TopNavigationWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTreeViews", - }, - "name": "findAllTreeViews", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "TreeViewWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTutorialPanels", - }, - "name": "findAllTutorialPanels", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "TutorialPanelWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllWizards", - }, - "name": "findAllWizards", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "WizardWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a wrapper that matches the AnchorNavigations with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches AnchorNavigations.", - "inheritedFrom": { - "name": "ElementWrapper.findAnchorNavigation", - }, - "name": "findAnchorNavigation", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "AnchorNavigationWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Annotations with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Annotations.", - "inheritedFrom": { - "name": "ElementWrapper.findAnnotation", - }, - "name": "findAnnotation", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "AnnotationWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the AppLayouts with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches AppLayouts.", - "inheritedFrom": { - "name": "ElementWrapper.findAppLayout", - }, - "name": "findAppLayout", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "AppLayoutWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the AppLayoutToolbars with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches AppLayoutToolbars.", - "inheritedFrom": { - "name": "ElementWrapper.findAppLayoutToolbar", - }, - "name": "findAppLayoutToolbar", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "AppLayoutToolbarWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the AreaCharts with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches AreaCharts.", - "inheritedFrom": { - "name": "ElementWrapper.findAreaChart", - }, - "name": "findAreaChart", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "AreaChartWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the AttributeEditors with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches AttributeEditors.", - "inheritedFrom": { - "name": "ElementWrapper.findAttributeEditor", - }, - "name": "findAttributeEditor", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "AttributeEditorWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Autosuggests with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Autosuggests.", - "inheritedFrom": { - "name": "ElementWrapper.findAutosuggest", - }, - "name": "findAutosuggest", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "AutosuggestWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Badges with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Badges.", - "inheritedFrom": { - "name": "ElementWrapper.findBadge", - }, - "name": "findBadge", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "BadgeWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the BarCharts with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches BarCharts.", - "inheritedFrom": { - "name": "ElementWrapper.findBarChart", - }, - "name": "findBarChart", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "BarChartWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Boxes with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Boxes.", - "inheritedFrom": { - "name": "ElementWrapper.findBox", - }, - "name": "findBox", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "BoxWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the BreadcrumbGroups with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches BreadcrumbGroups.", - "inheritedFrom": { - "name": "ElementWrapper.findBreadcrumbGroup", - }, - "name": "findBreadcrumbGroup", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "BreadcrumbGroupWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Buttons with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Buttons.", - "inheritedFrom": { - "name": "ElementWrapper.findButton", - }, - "name": "findButton", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the ButtonDropdowns with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches ButtonDropdowns.", - "inheritedFrom": { - "name": "ElementWrapper.findButtonDropdown", - }, - "name": "findButtonDropdown", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "ButtonDropdownWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the ButtonGroups with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches ButtonGroups.", - "inheritedFrom": { - "name": "ElementWrapper.findButtonGroup", - }, - "name": "findButtonGroup", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "ButtonGroupWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Calendars with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Calendars.", - "inheritedFrom": { - "name": "ElementWrapper.findCalendar", - }, - "name": "findCalendar", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "CalendarWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Cards with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Cards.", - "inheritedFrom": { - "name": "ElementWrapper.findCards", - }, - "name": "findCards", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "CardsWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Checkboxes with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Checkboxes.", - "inheritedFrom": { - "name": "ElementWrapper.findCheckbox", - }, - "name": "findCheckbox", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "CheckboxWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the CodeEditors with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches CodeEditors.", - "inheritedFrom": { - "name": "ElementWrapper.findCodeEditor", - }, - "name": "findCodeEditor", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "CodeEditorWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the CollectionPreferences with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches CollectionPreferences.", - "inheritedFrom": { - "name": "ElementWrapper.findCollectionPreferences", - }, - "name": "findCollectionPreferences", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "CollectionPreferencesWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the ColumnLayouts with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches ColumnLayouts.", - "inheritedFrom": { - "name": "ElementWrapper.findColumnLayout", - }, - "name": "findColumnLayout", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "ColumnLayoutWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "description": "Returns a wrapper that matches the Containers with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Containers.", - "inheritedFrom": { - "name": "ElementWrapper.findContainer", - }, - "name": "findContainer", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "ContainerWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the ContentLayouts with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches ContentLayouts.", - "inheritedFrom": { - "name": "ElementWrapper.findContentLayout", - }, - "name": "findContentLayout", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "ContentLayoutWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the CopyToClipboards with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches CopyToClipboards.", - "inheritedFrom": { - "name": "ElementWrapper.findCopyToClipboard", - }, - "name": "findCopyToClipboard", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "CopyToClipboardWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the DateInputs with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches DateInputs.", - "inheritedFrom": { - "name": "ElementWrapper.findDateInput", - }, - "name": "findDateInput", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "DateInputWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the DatePickers with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches DatePickers.", - "inheritedFrom": { - "name": "ElementWrapper.findDatePicker", - }, - "name": "findDatePicker", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "DatePickerWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the DateRangePickers with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches DateRangePickers.", - "inheritedFrom": { - "name": "ElementWrapper.findDateRangePicker", - }, - "name": "findDateRangePicker", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "DateRangePickerWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Drawers with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Drawers.", - "inheritedFrom": { - "name": "ElementWrapper.findDrawer", - }, - "name": "findDrawer", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "DrawerWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the ExpandableSections with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches ExpandableSections.", - "inheritedFrom": { - "name": "ElementWrapper.findExpandableSection", - }, - "name": "findExpandableSection", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "ExpandableSectionWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the FileDropzones with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches FileDropzones.", - "inheritedFrom": { - "name": "ElementWrapper.findFileDropzone", - }, - "name": "findFileDropzone", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "FileDropzoneWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the FileInputs with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches FileInputs.", - "inheritedFrom": { - "name": "ElementWrapper.findFileInput", - }, - "name": "findFileInput", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "FileInputWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the FileTokenGroups with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches FileTokenGroups.", - "inheritedFrom": { - "name": "ElementWrapper.findFileTokenGroup", - }, - "name": "findFileTokenGroup", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "FileTokenGroupWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the FileUploads with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches FileUploads.", - "inheritedFrom": { - "name": "ElementWrapper.findFileUpload", - }, - "name": "findFileUpload", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "FileUploadWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Flashbars with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Flashbars.", - "inheritedFrom": { - "name": "ElementWrapper.findFlashbar", - }, - "name": "findFlashbar", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "FlashbarWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Forms with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Forms.", - "inheritedFrom": { - "name": "ElementWrapper.findForm", - }, - "name": "findForm", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "FormWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the FormFields with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches FormFields.", - "inheritedFrom": { - "name": "ElementWrapper.findFormField", - }, - "name": "findFormField", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "FormFieldWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Grids with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Grids.", - "inheritedFrom": { - "name": "ElementWrapper.findGrid", - }, - "name": "findGrid", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "GridWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Headers with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Headers.", - "inheritedFrom": { - "name": "ElementWrapper.findHeader", - }, - "name": "findHeader", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "HeaderWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the HelpPanels with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches HelpPanels.", - "inheritedFrom": { - "name": "ElementWrapper.findHelpPanel", - }, - "name": "findHelpPanel", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "HelpPanelWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Hotspots with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Hotspots.", - "inheritedFrom": { - "name": "ElementWrapper.findHotspot", - }, - "name": "findHotspot", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "HotspotWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Icons with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Icons.", - "inheritedFrom": { - "name": "ElementWrapper.findIcon", - }, - "name": "findIcon", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "IconWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Inputs with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Inputs.", - "inheritedFrom": { - "name": "ElementWrapper.findInput", - }, - "name": "findInput", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "InputWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the KeyValuePairs with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches KeyValuePairs.", - "inheritedFrom": { - "name": "ElementWrapper.findKeyValuePairs", - }, - "name": "findKeyValuePairs", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "KeyValuePairsWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the LineCharts with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches LineCharts.", - "inheritedFrom": { - "name": "ElementWrapper.findLineChart", - }, - "name": "findLineChart", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "LineChartWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Links with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Links.", - "inheritedFrom": { - "name": "ElementWrapper.findLink", - }, - "name": "findLink", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "LinkWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Lists with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Lists.", - "inheritedFrom": { - "name": "ElementWrapper.findList", - }, - "name": "findList", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "ListWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the LiveRegions with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches LiveRegions.", - "inheritedFrom": { - "name": "ElementWrapper.findLiveRegion", - }, - "name": "findLiveRegion", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "LiveRegionWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the MixedLineBarCharts with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches MixedLineBarCharts.", - "inheritedFrom": { - "name": "ElementWrapper.findMixedLineBarChart", - }, - "name": "findMixedLineBarChart", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MixedLineBarChartWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Modals with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Modals.", - "inheritedFrom": { - "name": "ElementWrapper.findModal", - }, - "name": "findModal", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "ModalWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Multiselects with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Multiselects.", - "inheritedFrom": { - "name": "ElementWrapper.findMultiselect", - }, - "name": "findMultiselect", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiselectWrapper", - "type": "reference", - }, - }, - { - "name": "findOpenDropdown", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns a wrapper that matches the Paginations with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Paginations.", - "inheritedFrom": { - "name": "ElementWrapper.findPagination", - }, - "name": "findPagination", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "PaginationWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the PieCharts with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches PieCharts.", - "inheritedFrom": { - "name": "ElementWrapper.findPieChart", - }, - "name": "findPieChart", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "PieChartWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Popovers with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Popovers.", - "inheritedFrom": { - "name": "ElementWrapper.findPopover", - }, - "name": "findPopover", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "PopoverWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the ProgressBars with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches ProgressBars.", - "inheritedFrom": { - "name": "ElementWrapper.findProgressBar", - }, - "name": "findProgressBar", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "ProgressBarWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the PromptInputs with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches PromptInputs.", - "inheritedFrom": { - "name": "ElementWrapper.findPromptInput", - }, - "name": "findPromptInput", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "PromptInputWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the PropertyFilters with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches PropertyFilters.", - "inheritedFrom": { - "name": "ElementWrapper.findPropertyFilter", - }, - "name": "findPropertyFilter", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "PropertyFilterWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the RadioGroups with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches RadioGroups.", - "inheritedFrom": { - "name": "ElementWrapper.findRadioGroup", - }, - "name": "findRadioGroup", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "RadioGroupWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the S3ResourceSelectors with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches S3ResourceSelectors.", - "inheritedFrom": { - "name": "ElementWrapper.findS3ResourceSelector", - }, - "name": "findS3ResourceSelector", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "S3ResourceSelectorWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the SegmentedControls with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches SegmentedControls.", - "inheritedFrom": { - "name": "ElementWrapper.findSegmentedControl", - }, - "name": "findSegmentedControl", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "SegmentedControlWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Selects with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Selects.", - "inheritedFrom": { - "name": "ElementWrapper.findSelect", - }, - "name": "findSelect", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "SelectWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the SideNavigations with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches SideNavigations.", - "inheritedFrom": { - "name": "ElementWrapper.findSideNavigation", - }, - "name": "findSideNavigation", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "SideNavigationWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Sliders with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Sliders.", - "inheritedFrom": { - "name": "ElementWrapper.findSlider", - }, - "name": "findSlider", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "SliderWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the SpaceBetweens with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches SpaceBetweens.", - "inheritedFrom": { - "name": "ElementWrapper.findSpaceBetween", - }, - "name": "findSpaceBetween", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "SpaceBetweenWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Spinners with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Spinners.", - "inheritedFrom": { - "name": "ElementWrapper.findSpinner", - }, - "name": "findSpinner", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "SpinnerWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the SplitPanels with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches SplitPanels.", - "inheritedFrom": { - "name": "ElementWrapper.findSplitPanel", - }, - "name": "findSplitPanel", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "SplitPanelWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the StatusIndicators with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches StatusIndicators.", - "inheritedFrom": { - "name": "ElementWrapper.findStatusIndicator", - }, - "name": "findStatusIndicator", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "StatusIndicatorWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Steps with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Steps.", - "inheritedFrom": { - "name": "ElementWrapper.findSteps", - }, - "name": "findSteps", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "StepsWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Tables with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Tables.", - "inheritedFrom": { - "name": "ElementWrapper.findTable", - }, - "name": "findTable", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "TableWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Tabs with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Tabs.", - "inheritedFrom": { - "name": "ElementWrapper.findTabs", - }, - "name": "findTabs", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "TabsWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the TagEditors with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches TagEditors.", - "inheritedFrom": { - "name": "ElementWrapper.findTagEditor", - }, - "name": "findTagEditor", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "TagEditorWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the TextContents with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches TextContents.", - "inheritedFrom": { - "name": "ElementWrapper.findTextContent", - }, - "name": "findTextContent", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "TextContentWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the TextFilters with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches TextFilters.", - "inheritedFrom": { - "name": "ElementWrapper.findTextFilter", - }, - "name": "findTextFilter", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "TextFilterWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Textareas with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Textareas.", - "inheritedFrom": { - "name": "ElementWrapper.findTextarea", - }, - "name": "findTextarea", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "TextareaWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Tiles with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Tiles.", - "inheritedFrom": { - "name": "ElementWrapper.findTiles", - }, - "name": "findTiles", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "TilesWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the TimeInputs with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches TimeInputs.", - "inheritedFrom": { - "name": "ElementWrapper.findTimeInput", - }, - "name": "findTimeInput", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "TimeInputWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Toggles with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Toggles.", - "inheritedFrom": { - "name": "ElementWrapper.findToggle", - }, - "name": "findToggle", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "ToggleWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the ToggleButtons with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches ToggleButtons.", - "inheritedFrom": { - "name": "ElementWrapper.findToggleButton", - }, - "name": "findToggleButton", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "ToggleButtonWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the TokenGroups with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches TokenGroups.", - "inheritedFrom": { - "name": "ElementWrapper.findTokenGroup", - }, - "name": "findTokenGroup", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "TokenGroupWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the TopNavigations with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches TopNavigations.", - "inheritedFrom": { - "name": "ElementWrapper.findTopNavigation", - }, - "name": "findTopNavigation", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "TopNavigationWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the TreeViews with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches TreeViews.", - "inheritedFrom": { - "name": "ElementWrapper.findTreeView", - }, - "name": "findTreeView", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "TreeViewWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the TutorialPanels with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches TutorialPanels.", - "inheritedFrom": { - "name": "ElementWrapper.findTutorialPanel", - }, - "name": "findTutorialPanel", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "TutorialPanelWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Wizards with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Wizards.", - "inheritedFrom": { - "name": "ElementWrapper.findWizard", - }, - "name": "findWizard", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "WizardWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "DropdownWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findDisabledOptions", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "OptionWrapper", - "type": "reference", - }, - ], - }, - }, - { - "name": "findFooterRegion", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns an option group from the dropdown.", - "name": "findGroup", - "parameters": [ - { - "description": " -1-based index of the group to select. -", - "flags": { - "isOptional": false, - }, - "name": "index", - "typeName": "number", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns all option groups in the dropdown.", - "name": "findGroups", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "name": "findHighlightedAriaLiveRegion", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns highlighted text fragments from all of the options. -Options get highlighted when they match the value of the input field.", - "name": "findHighlightedMatches", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "name": "findHighlightedOption", - "parameters": [], - "returnType": { - "name": "OptionWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findOpenDropdown", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns an option from the dropdown.", - "name": "findOption", - "parameters": [ - { - "description": " -1-based index of the option to select. -", - "flags": { - "isOptional": false, - }, - "name": "optionIndex", - "typeName": "number", - }, - ], - "returnType": { - "name": "OptionWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findOptionByValue", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "value", - "typeName": "string", - }, - ], - "returnType": { - "name": "OptionWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns an option from the dropdown.", - "name": "findOptionInGroup", - "parameters": [ - { - "description": " -1-based index of the group to select an option in.", - "flags": { - "isOptional": false, - }, - "name": "groupIndex", - "typeName": "number", - }, - { - "description": " -1-based index of the option to select. -", - "flags": { - "isOptional": false, - }, - "name": "optionIndex", - "typeName": "number", - }, - ], - "returnType": { - "name": "OptionWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findOptions", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "OptionWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Use this element to scroll through the list of options", - "name": "findOptionsContainer", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findSelectAll", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findSelectedOptions", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "OptionWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "DropdownContentWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "description": "", - "name": "findDropdown", - "parameters": [ - { - "defaultValue": "{ - expandToViewport: false - }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], - "returnType": { - "name": "DropdownContentWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findTrigger", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "DropdownHostComponentWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "inheritedFrom": { - "name": "DropdownContentWrapper.findDisabledOptions", - }, - "name": "findDisabledOptions", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "OptionWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "DropdownContentWrapper.findFooterRegion", - }, - "name": "findFooterRegion", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns an option group from the dropdown.", - "inheritedFrom": { - "name": "DropdownContentWrapper.findGroup", - }, - "name": "findGroup", - "parameters": [ - { - "description": " -1-based index of the group to select. -", - "flags": { - "isOptional": false, - }, - "name": "index", - "typeName": "number", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns all option groups in the dropdown.", - "inheritedFrom": { - "name": "DropdownContentWrapper.findGroups", - }, - "name": "findGroups", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "DropdownContentWrapper.findHighlightedAriaLiveRegion", - }, - "name": "findHighlightedAriaLiveRegion", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns highlighted text fragments from all of the options. -Options get highlighted when they match the value of the input field.", - "inheritedFrom": { - "name": "DropdownContentWrapper.findHighlightedMatches", - }, - "name": "findHighlightedMatches", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "DropdownContentWrapper.findHighlightedOption", - }, - "name": "findHighlightedOption", - "parameters": [], - "returnType": { - "name": "OptionWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findOpenDropdown", - "parameters": [], - "returnType": { - "name": "DropdownWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns an option from the dropdown.", - "inheritedFrom": { - "name": "DropdownContentWrapper.findOption", - }, - "name": "findOption", - "parameters": [ - { - "description": " -1-based index of the option to select. -", - "flags": { - "isOptional": false, - }, - "name": "optionIndex", - "typeName": "number", - }, - ], - "returnType": { - "name": "OptionWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "DropdownContentWrapper.findOptionByValue", - }, - "name": "findOptionByValue", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "value", - "typeName": "string", - }, - ], - "returnType": { - "name": "OptionWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns an option from the dropdown.", - "inheritedFrom": { - "name": "DropdownContentWrapper.findOptionInGroup", - }, - "name": "findOptionInGroup", - "parameters": [ - { - "description": " -1-based index of the group to select an option in.", - "flags": { - "isOptional": false, - }, - "name": "groupIndex", - "typeName": "number", - }, - { - "description": " -1-based index of the option to select. -", - "flags": { - "isOptional": false, - }, - "name": "optionIndex", - "typeName": "number", - }, - ], - "returnType": { - "name": "OptionWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "DropdownContentWrapper.findOptions", - }, - "name": "findOptions", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "OptionWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Use this element to scroll through the list of options", - "inheritedFrom": { - "name": "DropdownContentWrapper.findOptionsContainer", - }, - "name": "findOptionsContainer", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "DropdownContentWrapper.findSelectAll", - }, - "name": "findSelectAll", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "DropdownContentWrapper.findSelectedOptions", - }, - "name": "findSelectedOptions", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "OptionWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "PortalDropdownContentWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findDescription", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findDisabledReason", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findLabel", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findLabelTag", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findTags", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "OptionWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Alerts with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Alerts.", - "inheritedFrom": { - "name": "ElementWrapper.findAlert", - }, - "name": "findAlert", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "AlertWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllAlerts", - }, - "name": "findAllAlerts", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "AlertWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllAnchorNavigations", - }, - "name": "findAllAnchorNavigations", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "AnchorNavigationWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllAnnotations", - }, - "name": "findAllAnnotations", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "AnnotationWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllAppLayoutToolbars", - }, - "name": "findAllAppLayoutToolbars", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "AppLayoutToolbarWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllAppLayouts", - }, - "name": "findAllAppLayouts", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "AppLayoutWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllAreaCharts", - }, - "name": "findAllAreaCharts", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "AreaChartWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllAttributeEditors", - }, - "name": "findAllAttributeEditors", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "AttributeEditorWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllAutosuggests", - }, - "name": "findAllAutosuggests", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "AutosuggestWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllBadges", - }, - "name": "findAllBadges", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "BadgeWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllBarCharts", - }, - "name": "findAllBarCharts", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "BarChartWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllBoxes", - }, - "name": "findAllBoxes", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "BoxWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllBreadcrumbGroups", - }, - "name": "findAllBreadcrumbGroups", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "BreadcrumbGroupWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllButtonDropdowns", - }, - "name": "findAllButtonDropdowns", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ButtonDropdownWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllButtonGroups", - }, - "name": "findAllButtonGroups", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ButtonGroupWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllButtons", - }, - "name": "findAllButtons", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ButtonWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllCalendars", - }, - "name": "findAllCalendars", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "CalendarWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllCards", - }, - "name": "findAllCards", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "CardsWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllCheckboxes", - }, - "name": "findAllCheckboxes", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "CheckboxWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllCodeEditors", - }, - "name": "findAllCodeEditors", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "CodeEditorWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllCollectionPreferences", - }, - "name": "findAllCollectionPreferences", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "CollectionPreferencesWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllColumnLayouts", - }, - "name": "findAllColumnLayouts", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ColumnLayoutWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllContainers", - }, - "name": "findAllContainers", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ContainerWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllContentLayouts", - }, - "name": "findAllContentLayouts", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ContentLayoutWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllCopyToClipboards", - }, - "name": "findAllCopyToClipboards", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "CopyToClipboardWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllDateInputs", - }, - "name": "findAllDateInputs", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "DateInputWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllDatePickers", - }, - "name": "findAllDatePickers", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "DatePickerWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllDateRangePickers", - }, - "name": "findAllDateRangePickers", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "DateRangePickerWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllDrawers", - }, - "name": "findAllDrawers", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "DrawerWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllExpandableSections", - }, - "name": "findAllExpandableSections", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ExpandableSectionWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllFileDropzones", - }, - "name": "findAllFileDropzones", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "FileDropzoneWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllFileInputs", - }, - "name": "findAllFileInputs", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "FileInputWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllFileTokenGroups", - }, - "name": "findAllFileTokenGroups", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "FileTokenGroupWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllFileUploads", - }, - "name": "findAllFileUploads", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "FileUploadWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllFlashbars", - }, - "name": "findAllFlashbars", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "FlashbarWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllFormFields", - }, - "name": "findAllFormFields", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "FormFieldWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllForms", - }, - "name": "findAllForms", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "FormWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllGrids", - }, - "name": "findAllGrids", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "GridWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllHeaders", - }, - "name": "findAllHeaders", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "HeaderWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllHelpPanels", - }, - "name": "findAllHelpPanels", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "HelpPanelWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllHotspots", - }, - "name": "findAllHotspots", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "HotspotWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllIcons", - }, - "name": "findAllIcons", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "IconWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllInputs", - }, - "name": "findAllInputs", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "InputWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllKeyValuePairs", - }, - "name": "findAllKeyValuePairs", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "KeyValuePairsWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllLineCharts", - }, - "name": "findAllLineCharts", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "LineChartWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllLinks", - }, - "name": "findAllLinks", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "LinkWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllLists", - }, - "name": "findAllLists", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ListWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllLiveRegions", - }, - "name": "findAllLiveRegions", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "LiveRegionWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllMixedLineBarCharts", - }, - "name": "findAllMixedLineBarCharts", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "MixedLineBarChartWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllModals", - }, - "name": "findAllModals", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ModalWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllMultiselects", - }, - "name": "findAllMultiselects", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "MultiselectWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllPaginations", - }, - "name": "findAllPaginations", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "PaginationWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllPieCharts", - }, - "name": "findAllPieCharts", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "PieChartWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllPopovers", - }, - "name": "findAllPopovers", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "PopoverWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllProgressBars", - }, - "name": "findAllProgressBars", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ProgressBarWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllPromptInputs", - }, - "name": "findAllPromptInputs", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "PromptInputWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllPropertyFilters", - }, - "name": "findAllPropertyFilters", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "PropertyFilterWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllRadioGroups", - }, - "name": "findAllRadioGroups", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "RadioGroupWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllS3ResourceSelectors", - }, - "name": "findAllS3ResourceSelectors", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "S3ResourceSelectorWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllSegmentedControls", - }, - "name": "findAllSegmentedControls", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "SegmentedControlWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllSelects", - }, - "name": "findAllSelects", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "SelectWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllSideNavigations", - }, - "name": "findAllSideNavigations", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "SideNavigationWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllSliders", - }, - "name": "findAllSliders", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "SliderWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllSpaceBetweens", - }, - "name": "findAllSpaceBetweens", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "SpaceBetweenWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllSpinners", - }, - "name": "findAllSpinners", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "SpinnerWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllSplitPanels", - }, - "name": "findAllSplitPanels", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "SplitPanelWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllStatusIndicators", - }, - "name": "findAllStatusIndicators", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "StatusIndicatorWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllSteps", - }, - "name": "findAllSteps", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "StepsWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTables", - }, - "name": "findAllTables", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "TableWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTabs", - }, - "name": "findAllTabs", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "TabsWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTagEditors", - }, - "name": "findAllTagEditors", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "TagEditorWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTextContents", - }, - "name": "findAllTextContents", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "TextContentWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTextFilters", - }, - "name": "findAllTextFilters", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "TextFilterWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTextareas", - }, - "name": "findAllTextareas", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "TextareaWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTiles", - }, - "name": "findAllTiles", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "TilesWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTimeInputs", - }, - "name": "findAllTimeInputs", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "TimeInputWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllToggleButtons", - }, - "name": "findAllToggleButtons", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ToggleButtonWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllToggles", - }, - "name": "findAllToggles", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ToggleWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTokenGroups", - }, - "name": "findAllTokenGroups", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "TokenGroupWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTopNavigations", - }, - "name": "findAllTopNavigations", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "TopNavigationWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTreeViews", - }, - "name": "findAllTreeViews", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "TreeViewWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTutorialPanels", - }, - "name": "findAllTutorialPanels", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "TutorialPanelWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllWizards", - }, - "name": "findAllWizards", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "WizardWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a wrapper that matches the AnchorNavigations with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches AnchorNavigations.", - "inheritedFrom": { - "name": "ElementWrapper.findAnchorNavigation", - }, - "name": "findAnchorNavigation", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "AnchorNavigationWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Annotations with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Annotations.", - "inheritedFrom": { - "name": "ElementWrapper.findAnnotation", - }, - "name": "findAnnotation", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "AnnotationWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the AppLayouts with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches AppLayouts.", - "inheritedFrom": { - "name": "ElementWrapper.findAppLayout", - }, - "name": "findAppLayout", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "AppLayoutWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the AppLayoutToolbars with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches AppLayoutToolbars.", - "inheritedFrom": { - "name": "ElementWrapper.findAppLayoutToolbar", - }, - "name": "findAppLayoutToolbar", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "AppLayoutToolbarWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the AreaCharts with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches AreaCharts.", - "inheritedFrom": { - "name": "ElementWrapper.findAreaChart", - }, - "name": "findAreaChart", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "AreaChartWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the AttributeEditors with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches AttributeEditors.", - "inheritedFrom": { - "name": "ElementWrapper.findAttributeEditor", - }, - "name": "findAttributeEditor", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "AttributeEditorWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Autosuggests with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Autosuggests.", - "inheritedFrom": { - "name": "ElementWrapper.findAutosuggest", - }, - "name": "findAutosuggest", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "AutosuggestWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Badges with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Badges.", - "inheritedFrom": { - "name": "ElementWrapper.findBadge", - }, - "name": "findBadge", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "BadgeWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the BarCharts with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches BarCharts.", - "inheritedFrom": { - "name": "ElementWrapper.findBarChart", - }, - "name": "findBarChart", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "BarChartWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Boxes with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Boxes.", - "inheritedFrom": { - "name": "ElementWrapper.findBox", - }, - "name": "findBox", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "BoxWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the BreadcrumbGroups with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches BreadcrumbGroups.", - "inheritedFrom": { - "name": "ElementWrapper.findBreadcrumbGroup", - }, - "name": "findBreadcrumbGroup", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "BreadcrumbGroupWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Buttons with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Buttons.", - "inheritedFrom": { - "name": "ElementWrapper.findButton", - }, - "name": "findButton", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the ButtonDropdowns with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches ButtonDropdowns.", - "inheritedFrom": { - "name": "ElementWrapper.findButtonDropdown", - }, - "name": "findButtonDropdown", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "ButtonDropdownWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the ButtonGroups with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches ButtonGroups.", - "inheritedFrom": { - "name": "ElementWrapper.findButtonGroup", - }, - "name": "findButtonGroup", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "ButtonGroupWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Calendars with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Calendars.", - "inheritedFrom": { - "name": "ElementWrapper.findCalendar", - }, - "name": "findCalendar", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "CalendarWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Cards with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Cards.", - "inheritedFrom": { - "name": "ElementWrapper.findCards", - }, - "name": "findCards", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "CardsWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Checkboxes with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Checkboxes.", - "inheritedFrom": { - "name": "ElementWrapper.findCheckbox", - }, - "name": "findCheckbox", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "CheckboxWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the CodeEditors with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches CodeEditors.", - "inheritedFrom": { - "name": "ElementWrapper.findCodeEditor", - }, - "name": "findCodeEditor", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "CodeEditorWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the CollectionPreferences with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches CollectionPreferences.", - "inheritedFrom": { - "name": "ElementWrapper.findCollectionPreferences", - }, - "name": "findCollectionPreferences", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "CollectionPreferencesWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the ColumnLayouts with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches ColumnLayouts.", - "inheritedFrom": { - "name": "ElementWrapper.findColumnLayout", - }, - "name": "findColumnLayout", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "ColumnLayoutWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "description": "Returns a wrapper that matches the Containers with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Containers.", - "inheritedFrom": { - "name": "ElementWrapper.findContainer", - }, - "name": "findContainer", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "ContainerWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the ContentLayouts with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches ContentLayouts.", - "inheritedFrom": { - "name": "ElementWrapper.findContentLayout", - }, - "name": "findContentLayout", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "ContentLayoutWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the CopyToClipboards with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches CopyToClipboards.", - "inheritedFrom": { - "name": "ElementWrapper.findCopyToClipboard", - }, - "name": "findCopyToClipboard", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "CopyToClipboardWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the DateInputs with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches DateInputs.", - "inheritedFrom": { - "name": "ElementWrapper.findDateInput", - }, - "name": "findDateInput", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "DateInputWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the DatePickers with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches DatePickers.", - "inheritedFrom": { - "name": "ElementWrapper.findDatePicker", - }, - "name": "findDatePicker", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "DatePickerWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the DateRangePickers with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches DateRangePickers.", - "inheritedFrom": { - "name": "ElementWrapper.findDateRangePicker", - }, - "name": "findDateRangePicker", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "DateRangePickerWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Drawers with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Drawers.", - "inheritedFrom": { - "name": "ElementWrapper.findDrawer", - }, - "name": "findDrawer", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "DrawerWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the ExpandableSections with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches ExpandableSections.", - "inheritedFrom": { - "name": "ElementWrapper.findExpandableSection", - }, - "name": "findExpandableSection", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "ExpandableSectionWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the FileDropzones with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches FileDropzones.", - "inheritedFrom": { - "name": "ElementWrapper.findFileDropzone", - }, - "name": "findFileDropzone", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "FileDropzoneWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the FileInputs with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches FileInputs.", - "inheritedFrom": { - "name": "ElementWrapper.findFileInput", - }, - "name": "findFileInput", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "FileInputWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the FileTokenGroups with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches FileTokenGroups.", - "inheritedFrom": { - "name": "ElementWrapper.findFileTokenGroup", - }, - "name": "findFileTokenGroup", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "FileTokenGroupWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the FileUploads with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches FileUploads.", - "inheritedFrom": { - "name": "ElementWrapper.findFileUpload", - }, - "name": "findFileUpload", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "FileUploadWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Flashbars with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Flashbars.", - "inheritedFrom": { - "name": "ElementWrapper.findFlashbar", - }, - "name": "findFlashbar", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "FlashbarWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Forms with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Forms.", - "inheritedFrom": { - "name": "ElementWrapper.findForm", - }, - "name": "findForm", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "FormWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the FormFields with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches FormFields.", - "inheritedFrom": { - "name": "ElementWrapper.findFormField", - }, - "name": "findFormField", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "FormFieldWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Grids with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Grids.", - "inheritedFrom": { - "name": "ElementWrapper.findGrid", - }, - "name": "findGrid", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "GridWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Headers with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Headers.", - "inheritedFrom": { - "name": "ElementWrapper.findHeader", - }, - "name": "findHeader", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "HeaderWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the HelpPanels with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches HelpPanels.", - "inheritedFrom": { - "name": "ElementWrapper.findHelpPanel", - }, - "name": "findHelpPanel", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "HelpPanelWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Hotspots with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Hotspots.", - "inheritedFrom": { - "name": "ElementWrapper.findHotspot", - }, - "name": "findHotspot", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "HotspotWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Icons with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Icons.", - "inheritedFrom": { - "name": "ElementWrapper.findIcon", - }, - "name": "findIcon", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "IconWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Inputs with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Inputs.", - "inheritedFrom": { - "name": "ElementWrapper.findInput", - }, - "name": "findInput", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "InputWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the KeyValuePairs with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches KeyValuePairs.", - "inheritedFrom": { - "name": "ElementWrapper.findKeyValuePairs", - }, - "name": "findKeyValuePairs", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "KeyValuePairsWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the LineCharts with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches LineCharts.", - "inheritedFrom": { - "name": "ElementWrapper.findLineChart", - }, - "name": "findLineChart", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "LineChartWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Links with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Links.", - "inheritedFrom": { - "name": "ElementWrapper.findLink", - }, - "name": "findLink", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "LinkWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Lists with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Lists.", - "inheritedFrom": { - "name": "ElementWrapper.findList", - }, - "name": "findList", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "ListWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the LiveRegions with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches LiveRegions.", - "inheritedFrom": { - "name": "ElementWrapper.findLiveRegion", - }, - "name": "findLiveRegion", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "LiveRegionWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the MixedLineBarCharts with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches MixedLineBarCharts.", - "inheritedFrom": { - "name": "ElementWrapper.findMixedLineBarChart", - }, - "name": "findMixedLineBarChart", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MixedLineBarChartWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Modals with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Modals.", - "inheritedFrom": { - "name": "ElementWrapper.findModal", - }, - "name": "findModal", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "ModalWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Multiselects with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Multiselects.", - "inheritedFrom": { - "name": "ElementWrapper.findMultiselect", - }, - "name": "findMultiselect", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiselectWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Paginations with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Paginations.", - "inheritedFrom": { - "name": "ElementWrapper.findPagination", - }, - "name": "findPagination", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "PaginationWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the PieCharts with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches PieCharts.", - "inheritedFrom": { - "name": "ElementWrapper.findPieChart", - }, - "name": "findPieChart", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "PieChartWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Popovers with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Popovers.", - "inheritedFrom": { - "name": "ElementWrapper.findPopover", - }, - "name": "findPopover", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "PopoverWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the ProgressBars with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches ProgressBars.", - "inheritedFrom": { - "name": "ElementWrapper.findProgressBar", - }, - "name": "findProgressBar", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "ProgressBarWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the PromptInputs with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches PromptInputs.", - "inheritedFrom": { - "name": "ElementWrapper.findPromptInput", - }, - "name": "findPromptInput", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "PromptInputWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the PropertyFilters with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches PropertyFilters.", - "inheritedFrom": { - "name": "ElementWrapper.findPropertyFilter", - }, - "name": "findPropertyFilter", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "PropertyFilterWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the RadioGroups with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches RadioGroups.", - "inheritedFrom": { - "name": "ElementWrapper.findRadioGroup", - }, - "name": "findRadioGroup", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "RadioGroupWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the S3ResourceSelectors with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches S3ResourceSelectors.", - "inheritedFrom": { - "name": "ElementWrapper.findS3ResourceSelector", - }, - "name": "findS3ResourceSelector", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "S3ResourceSelectorWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the SegmentedControls with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches SegmentedControls.", - "inheritedFrom": { - "name": "ElementWrapper.findSegmentedControl", - }, - "name": "findSegmentedControl", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "SegmentedControlWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Selects with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Selects.", - "inheritedFrom": { - "name": "ElementWrapper.findSelect", - }, - "name": "findSelect", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "SelectWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the SideNavigations with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches SideNavigations.", - "inheritedFrom": { - "name": "ElementWrapper.findSideNavigation", - }, - "name": "findSideNavigation", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "SideNavigationWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Sliders with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Sliders.", - "inheritedFrom": { - "name": "ElementWrapper.findSlider", - }, - "name": "findSlider", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "SliderWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the SpaceBetweens with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches SpaceBetweens.", - "inheritedFrom": { - "name": "ElementWrapper.findSpaceBetween", - }, - "name": "findSpaceBetween", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "SpaceBetweenWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Spinners with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Spinners.", - "inheritedFrom": { - "name": "ElementWrapper.findSpinner", - }, - "name": "findSpinner", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "SpinnerWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the SplitPanels with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches SplitPanels.", - "inheritedFrom": { - "name": "ElementWrapper.findSplitPanel", - }, - "name": "findSplitPanel", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "SplitPanelWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the StatusIndicators with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches StatusIndicators.", - "inheritedFrom": { - "name": "ElementWrapper.findStatusIndicator", - }, - "name": "findStatusIndicator", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "StatusIndicatorWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Steps with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Steps.", - "inheritedFrom": { - "name": "ElementWrapper.findSteps", - }, - "name": "findSteps", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "StepsWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Tables with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Tables.", - "inheritedFrom": { - "name": "ElementWrapper.findTable", - }, - "name": "findTable", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "TableWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Tabs with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Tabs.", - "inheritedFrom": { - "name": "ElementWrapper.findTabs", - }, - "name": "findTabs", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "TabsWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the TagEditors with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches TagEditors.", - "inheritedFrom": { - "name": "ElementWrapper.findTagEditor", - }, - "name": "findTagEditor", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "TagEditorWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the TextContents with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches TextContents.", - "inheritedFrom": { - "name": "ElementWrapper.findTextContent", - }, - "name": "findTextContent", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "TextContentWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the TextFilters with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches TextFilters.", - "inheritedFrom": { - "name": "ElementWrapper.findTextFilter", - }, - "name": "findTextFilter", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "TextFilterWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Textareas with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Textareas.", - "inheritedFrom": { - "name": "ElementWrapper.findTextarea", - }, - "name": "findTextarea", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "TextareaWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Tiles with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Tiles.", - "inheritedFrom": { - "name": "ElementWrapper.findTiles", - }, - "name": "findTiles", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "TilesWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the TimeInputs with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches TimeInputs.", - "inheritedFrom": { - "name": "ElementWrapper.findTimeInput", - }, - "name": "findTimeInput", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "TimeInputWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Toggles with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Toggles.", - "inheritedFrom": { - "name": "ElementWrapper.findToggle", - }, - "name": "findToggle", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "ToggleWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the ToggleButtons with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches ToggleButtons.", - "inheritedFrom": { - "name": "ElementWrapper.findToggleButton", - }, - "name": "findToggleButton", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "ToggleButtonWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the TokenGroups with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches TokenGroups.", - "inheritedFrom": { - "name": "ElementWrapper.findTokenGroup", - }, - "name": "findTokenGroup", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "TokenGroupWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the TopNavigations with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches TopNavigations.", - "inheritedFrom": { - "name": "ElementWrapper.findTopNavigation", - }, - "name": "findTopNavigation", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "TopNavigationWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the TreeViews with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches TreeViews.", - "inheritedFrom": { - "name": "ElementWrapper.findTreeView", - }, - "name": "findTreeView", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "TreeViewWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the TutorialPanels with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches TutorialPanels.", - "inheritedFrom": { - "name": "ElementWrapper.findTutorialPanel", - }, - "name": "findTutorialPanel", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "TutorialPanelWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Wizards with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Wizards.", - "inheritedFrom": { - "name": "ElementWrapper.findWizard", - }, - "name": "findWizard", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "WizardWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "OptionsListWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findActions", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findContent", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findIcon", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findSecondaryContent", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "StructuredItemWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Alerts with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Alerts.", - "inheritedFrom": { - "name": "ElementWrapper.findAlert", - }, - "name": "findAlert", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "AlertWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllAlerts", - }, - "name": "findAllAlerts", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "AlertWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllAnchorNavigations", - }, - "name": "findAllAnchorNavigations", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "AnchorNavigationWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllAnnotations", - }, - "name": "findAllAnnotations", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "AnnotationWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllAppLayoutToolbars", - }, - "name": "findAllAppLayoutToolbars", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "AppLayoutToolbarWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllAppLayouts", - }, - "name": "findAllAppLayouts", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "AppLayoutWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllAreaCharts", - }, - "name": "findAllAreaCharts", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "AreaChartWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllAttributeEditors", - }, - "name": "findAllAttributeEditors", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "AttributeEditorWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllAutosuggests", - }, - "name": "findAllAutosuggests", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "AutosuggestWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllBadges", - }, - "name": "findAllBadges", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "BadgeWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllBarCharts", - }, - "name": "findAllBarCharts", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "BarChartWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllBoxes", - }, - "name": "findAllBoxes", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "BoxWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllBreadcrumbGroups", - }, - "name": "findAllBreadcrumbGroups", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "BreadcrumbGroupWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllButtonDropdowns", - }, - "name": "findAllButtonDropdowns", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ButtonDropdownWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllButtonGroups", - }, - "name": "findAllButtonGroups", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ButtonGroupWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllButtons", - }, - "name": "findAllButtons", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ButtonWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllCalendars", - }, - "name": "findAllCalendars", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "CalendarWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllCards", - }, - "name": "findAllCards", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "CardsWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllCheckboxes", - }, - "name": "findAllCheckboxes", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "CheckboxWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllCodeEditors", - }, - "name": "findAllCodeEditors", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "CodeEditorWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllCollectionPreferences", - }, - "name": "findAllCollectionPreferences", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "CollectionPreferencesWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllColumnLayouts", - }, - "name": "findAllColumnLayouts", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ColumnLayoutWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllContainers", - }, - "name": "findAllContainers", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ContainerWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllContentLayouts", - }, - "name": "findAllContentLayouts", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ContentLayoutWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllCopyToClipboards", - }, - "name": "findAllCopyToClipboards", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "CopyToClipboardWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllDateInputs", - }, - "name": "findAllDateInputs", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "DateInputWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllDatePickers", - }, - "name": "findAllDatePickers", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "DatePickerWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllDateRangePickers", - }, - "name": "findAllDateRangePickers", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "DateRangePickerWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllDrawers", - }, - "name": "findAllDrawers", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "DrawerWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllExpandableSections", - }, - "name": "findAllExpandableSections", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ExpandableSectionWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllFileDropzones", - }, - "name": "findAllFileDropzones", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "FileDropzoneWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllFileInputs", - }, - "name": "findAllFileInputs", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "FileInputWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllFileTokenGroups", - }, - "name": "findAllFileTokenGroups", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "FileTokenGroupWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllFileUploads", - }, - "name": "findAllFileUploads", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "FileUploadWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllFlashbars", - }, - "name": "findAllFlashbars", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "FlashbarWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllFormFields", - }, - "name": "findAllFormFields", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "FormFieldWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllForms", - }, - "name": "findAllForms", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "FormWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllGrids", - }, - "name": "findAllGrids", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "GridWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllHeaders", - }, - "name": "findAllHeaders", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "HeaderWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllHelpPanels", - }, - "name": "findAllHelpPanels", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "HelpPanelWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllHotspots", - }, - "name": "findAllHotspots", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "HotspotWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllIcons", - }, - "name": "findAllIcons", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "IconWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllInputs", - }, - "name": "findAllInputs", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "InputWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllKeyValuePairs", - }, - "name": "findAllKeyValuePairs", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "KeyValuePairsWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllLineCharts", - }, - "name": "findAllLineCharts", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "LineChartWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllLinks", - }, - "name": "findAllLinks", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "LinkWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllLists", - }, - "name": "findAllLists", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ListWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllLiveRegions", - }, - "name": "findAllLiveRegions", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "LiveRegionWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllMixedLineBarCharts", - }, - "name": "findAllMixedLineBarCharts", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "MixedLineBarChartWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllModals", - }, - "name": "findAllModals", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ModalWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllMultiselects", - }, - "name": "findAllMultiselects", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "MultiselectWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllPaginations", - }, - "name": "findAllPaginations", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "PaginationWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllPieCharts", - }, - "name": "findAllPieCharts", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "PieChartWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllPopovers", - }, - "name": "findAllPopovers", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "PopoverWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllProgressBars", - }, - "name": "findAllProgressBars", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ProgressBarWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllPromptInputs", - }, - "name": "findAllPromptInputs", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "PromptInputWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllPropertyFilters", - }, - "name": "findAllPropertyFilters", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "PropertyFilterWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllRadioGroups", - }, - "name": "findAllRadioGroups", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "RadioGroupWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllS3ResourceSelectors", - }, - "name": "findAllS3ResourceSelectors", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "S3ResourceSelectorWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllSegmentedControls", - }, - "name": "findAllSegmentedControls", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "SegmentedControlWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllSelects", - }, - "name": "findAllSelects", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "SelectWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllSideNavigations", - }, - "name": "findAllSideNavigations", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "SideNavigationWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllSliders", - }, - "name": "findAllSliders", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "SliderWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllSpaceBetweens", - }, - "name": "findAllSpaceBetweens", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "SpaceBetweenWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllSpinners", - }, - "name": "findAllSpinners", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "SpinnerWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllSplitPanels", - }, - "name": "findAllSplitPanels", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "SplitPanelWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllStatusIndicators", - }, - "name": "findAllStatusIndicators", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "StatusIndicatorWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllSteps", - }, - "name": "findAllSteps", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "StepsWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTables", - }, - "name": "findAllTables", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "TableWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTabs", - }, - "name": "findAllTabs", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "TabsWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTagEditors", - }, - "name": "findAllTagEditors", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "TagEditorWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTextContents", - }, - "name": "findAllTextContents", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "TextContentWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTextFilters", - }, - "name": "findAllTextFilters", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "TextFilterWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTextareas", - }, - "name": "findAllTextareas", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "TextareaWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTiles", - }, - "name": "findAllTiles", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "TilesWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTimeInputs", - }, - "name": "findAllTimeInputs", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "TimeInputWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllToggleButtons", - }, - "name": "findAllToggleButtons", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ToggleButtonWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllToggles", - }, - "name": "findAllToggles", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ToggleWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTokenGroups", - }, - "name": "findAllTokenGroups", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "TokenGroupWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTopNavigations", - }, - "name": "findAllTopNavigations", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "TopNavigationWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTreeViews", - }, - "name": "findAllTreeViews", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "TreeViewWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllTutorialPanels", - }, - "name": "findAllTutorialPanels", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "TutorialPanelWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "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.", - "inheritedFrom": { - "name": "ElementWrapper.findAllWizards", - }, - "name": "findAllWizards", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "WizardWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a wrapper that matches the AnchorNavigations with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches AnchorNavigations.", - "inheritedFrom": { - "name": "ElementWrapper.findAnchorNavigation", - }, - "name": "findAnchorNavigation", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "AnchorNavigationWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Annotations with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Annotations.", - "inheritedFrom": { - "name": "ElementWrapper.findAnnotation", - }, - "name": "findAnnotation", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "AnnotationWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the AppLayouts with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches AppLayouts.", - "inheritedFrom": { - "name": "ElementWrapper.findAppLayout", - }, - "name": "findAppLayout", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "AppLayoutWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the AppLayoutToolbars with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches AppLayoutToolbars.", - "inheritedFrom": { - "name": "ElementWrapper.findAppLayoutToolbar", - }, - "name": "findAppLayoutToolbar", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "AppLayoutToolbarWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the AreaCharts with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches AreaCharts.", - "inheritedFrom": { - "name": "ElementWrapper.findAreaChart", - }, - "name": "findAreaChart", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { - "name": "AreaChartWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the AttributeEditors with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches AttributeEditors.", - "inheritedFrom": { - "name": "ElementWrapper.findAttributeEditor", - }, - "name": "findAttributeEditor", + "name": "find", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "AttributeEditorWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns a wrapper that matches the Autosuggests with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Autosuggests.", "inheritedFrom": { - "name": "ElementWrapper.findAutosuggest", + "name": "AbstractWrapper.findAll", }, - "name": "findAutosuggest", + "name": "findAll", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "AutosuggestWrapper", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns a wrapper that matches the Badges with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Badges.", "inheritedFrom": { - "name": "ElementWrapper.findBadge", + "name": "AbstractWrapper.findAllByClassName", }, - "name": "findBadge", + "name": "findAllByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "BadgeWrapper", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns a wrapper that matches the BarCharts with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches BarCharts.", + "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. +If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", "inheritedFrom": { - "name": "ElementWrapper.findBarChart", + "name": "AbstractWrapper.findAllComponents", }, - "name": "findBarChart", + "name": "findAllComponents", "parameters": [ { + "flags": { + "isOptional": false, + }, + "name": "ComponentClass", + "typeName": "ComponentWrapperClass", + }, + { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "BarChartWrapper", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "Wrapper", + }, + ], }, }, { - "description": "Returns a wrapper that matches the Boxes with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Boxes.", "inheritedFrom": { - "name": "ElementWrapper.findBox", + "name": "AbstractWrapper.findAny", }, - "name": "findBox", + "name": "findAny", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "selectors", + "typeName": "Array", }, ], "returnType": { - "name": "BoxWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns a wrapper that matches the BreadcrumbGroups with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches BreadcrumbGroups.", "inheritedFrom": { - "name": "ElementWrapper.findBreadcrumbGroup", + "name": "AbstractWrapper.findByClassName", }, - "name": "findBreadcrumbGroup", + "name": "findByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "BreadcrumbGroupWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns a wrapper that matches the Buttons with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Buttons.", + "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { - "name": "ElementWrapper.findButton", + "name": "AbstractWrapper.findComponent", }, - "name": "findButton", + "name": "findComponent", "parameters": [ { + "description": "CSS selector", "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", + }, + { + "description": "Component's wrapper class", + "flags": { + "isOptional": false, + }, + "name": "ComponentClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "ButtonWrapper", - "type": "reference", + "isNullable": false, + "name": "Wrapper", }, }, { - "description": "Returns a wrapper that matches the ButtonDropdowns with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches ButtonDropdowns.", - "inheritedFrom": { - "name": "ElementWrapper.findButtonDropdown", + "description": "Returns the mode selector as a SegmentedControl wrapper. + +The mode selector is only rendered as a SegmentedControl on wide viewports. On narrow viewports, use \`findModesAsSelect()\` instead.", + "name": "findModesAsSegments", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "SegmentedControlWrapper", }, - "name": "findButtonDropdown", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + }, + { + "description": "Returns the mode selector as a Select wrapper. +The mode selector is only rendered as a Select on narrow viewports. On wide viewports, use \`findModesAsSegments()\` instead.", + "name": "findModesAsSelect", + "parameters": [], "returnType": { - "name": "ButtonDropdownWrapper", - "type": "reference", + "isNullable": false, + "name": "SelectWrapper", }, }, { - "description": "Returns a wrapper that matches the ButtonGroups with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches ButtonGroups.", "inheritedFrom": { - "name": "ElementWrapper.findButtonGroup", + "name": "AbstractWrapper.getElement", }, - "name": "findButtonGroup", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "getElement", + "parameters": [], "returnType": { - "name": "ButtonGroupWrapper", - "type": "reference", + "isNullable": false, + "name": "string", }, }, { "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", + "name": "AbstractWrapper.matches", }, - "name": "findByClassName", + "name": "matches", "parameters": [ { "flags": { "isOptional": false, }, - "name": "className", + "name": "selector", "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { - "description": "Returns a wrapper that matches the Calendars with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Calendars.", "inheritedFrom": { - "name": "ElementWrapper.findCalendar", + "name": "AbstractWrapper.toSelector", }, - "name": "findCalendar", + "name": "toSelector", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "string", + }, + }, + ], + "name": "SelectionModeSwitchWrapper", + }, + { + "methods": [ + { + "inheritedFrom": { + "name": "AbstractWrapper.find", + }, + "name": "find", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "CalendarWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns a wrapper that matches the Cards with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Cards.", "inheritedFrom": { - "name": "ElementWrapper.findCards", + "name": "AbstractWrapper.findAll", }, - "name": "findCards", + "name": "findAll", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "CardsWrapper", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns a wrapper that matches the Checkboxes with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Checkboxes.", "inheritedFrom": { - "name": "ElementWrapper.findCheckbox", + "name": "AbstractWrapper.findAllByClassName", }, - "name": "findCheckbox", + "name": "findAllByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "CheckboxWrapper", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns a wrapper that matches the CodeEditors with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches CodeEditors.", + "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. +If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", "inheritedFrom": { - "name": "ElementWrapper.findCodeEditor", + "name": "AbstractWrapper.findAllComponents", }, - "name": "findCodeEditor", + "name": "findAllComponents", "parameters": [ { + "flags": { + "isOptional": false, + }, + "name": "ComponentClass", + "typeName": "ComponentWrapperClass", + }, + { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "CodeEditorWrapper", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "Wrapper", + }, + ], }, }, { - "description": "Returns a wrapper that matches the CollectionPreferences with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches CollectionPreferences.", "inheritedFrom": { - "name": "ElementWrapper.findCollectionPreferences", + "name": "AbstractWrapper.findAny", }, - "name": "findCollectionPreferences", + "name": "findAny", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "selectors", + "typeName": "Array", }, ], "returnType": { - "name": "CollectionPreferencesWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns a wrapper that matches the ColumnLayouts with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches ColumnLayouts.", "inheritedFrom": { - "name": "ElementWrapper.findColumnLayout", + "name": "AbstractWrapper.findByClassName", }, - "name": "findColumnLayout", + "name": "findByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "ColumnLayoutWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -128302,1238 +86452,1015 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", }, }, { - "description": "Returns a wrapper that matches the Containers with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Containers.", - "inheritedFrom": { - "name": "ElementWrapper.findContainer", - }, - "name": "findContainer", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findContent", + "parameters": [], "returnType": { - "name": "ContainerWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns a wrapper that matches the ContentLayouts with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches ContentLayouts.", - "inheritedFrom": { - "name": "ElementWrapper.findContentLayout", - }, - "name": "findContentLayout", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findHeader", + "parameters": [], "returnType": { - "name": "ContentLayoutWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns a wrapper that matches the CopyToClipboards with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches CopyToClipboards.", - "inheritedFrom": { - "name": "ElementWrapper.findCopyToClipboard", - }, - "name": "findCopyToClipboard", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findHeaderActions", + "parameters": [], "returnType": { - "name": "CopyToClipboardWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns a wrapper that matches the DateInputs with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches DateInputs.", "inheritedFrom": { - "name": "ElementWrapper.findDateInput", + "name": "AbstractWrapper.getElement", }, - "name": "findDateInput", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "getElement", + "parameters": [], "returnType": { - "name": "DateInputWrapper", - "type": "reference", + "isNullable": false, + "name": "string", }, }, { - "description": "Returns a wrapper that matches the DatePickers with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches DatePickers.", "inheritedFrom": { - "name": "ElementWrapper.findDatePicker", + "name": "AbstractWrapper.matches", }, - "name": "findDatePicker", + "name": "matches", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "DatePickerWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns a wrapper that matches the DateRangePickers with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches DateRangePickers.", "inheritedFrom": { - "name": "ElementWrapper.findDateRangePicker", + "name": "AbstractWrapper.toSelector", }, - "name": "findDateRangePicker", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "toSelector", + "parameters": [], "returnType": { - "name": "DateRangePickerWrapper", - "type": "reference", + "isNullable": false, + "name": "string", }, }, + ], + "name": "DrawerWrapper", + }, + { + "methods": [ { - "description": "Returns a wrapper that matches the Drawers with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Drawers.", "inheritedFrom": { - "name": "ElementWrapper.findDrawer", + "name": "AbstractWrapper.find", }, - "name": "findDrawer", + "name": "find", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "DrawerWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns a wrapper that matches the ExpandableSections with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches ExpandableSections.", "inheritedFrom": { - "name": "ElementWrapper.findExpandableSection", + "name": "AbstractWrapper.findAll", }, - "name": "findExpandableSection", + "name": "findAll", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "ExpandableSectionWrapper", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns a wrapper that matches the FileDropzones with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches FileDropzones.", "inheritedFrom": { - "name": "ElementWrapper.findFileDropzone", + "name": "AbstractWrapper.findAllByClassName", }, - "name": "findFileDropzone", + "name": "findAllByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "FileDropzoneWrapper", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns a wrapper that matches the FileInputs with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches FileInputs.", + "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. +If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", "inheritedFrom": { - "name": "ElementWrapper.findFileInput", + "name": "AbstractWrapper.findAllComponents", }, - "name": "findFileInput", + "name": "findAllComponents", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "ComponentClass", + "typeName": "ComponentWrapperClass", }, - ], - "returnType": { - "name": "FileInputWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the FileTokenGroups with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches FileTokenGroups.", - "inheritedFrom": { - "name": "ElementWrapper.findFileTokenGroup", - }, - "name": "findFileTokenGroup", - "parameters": [ { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "FileTokenGroupWrapper", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "Wrapper", + }, + ], }, }, { - "description": "Returns a wrapper that matches the FileUploads with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches FileUploads.", "inheritedFrom": { - "name": "ElementWrapper.findFileUpload", + "name": "AbstractWrapper.findAny", }, - "name": "findFileUpload", + "name": "findAny", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "selectors", + "typeName": "Array", }, ], "returnType": { - "name": "FileUploadWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns a wrapper that matches the Flashbars with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Flashbars.", "inheritedFrom": { - "name": "ElementWrapper.findFlashbar", + "name": "AbstractWrapper.findByClassName", }, - "name": "findFlashbar", + "name": "findByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "FlashbarWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns a wrapper that matches the Forms with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Forms.", + "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { - "name": "ElementWrapper.findForm", + "name": "AbstractWrapper.findComponent", }, - "name": "findForm", + "name": "findComponent", "parameters": [ { + "description": "CSS selector", "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, - ], - "returnType": { - "name": "FormWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the FormFields with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches FormFields.", - "inheritedFrom": { - "name": "ElementWrapper.findFormField", - }, - "name": "findFormField", - "parameters": [ { + "description": "Component's wrapper class", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "ComponentClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "FormFieldWrapper", - "type": "reference", + "isNullable": false, + "name": "Wrapper", }, }, { - "description": "Returns a wrapper that matches the Grids with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Grids.", - "inheritedFrom": { - "name": "ElementWrapper.findGrid", - }, - "name": "findGrid", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findContent", + "parameters": [], "returnType": { - "name": "GridWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns a wrapper that matches the Headers with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Headers.", - "inheritedFrom": { - "name": "ElementWrapper.findHeader", - }, - "name": "findHeader", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findExpandButton", + "parameters": [], "returnType": { - "name": "HeaderWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns a wrapper that matches the HelpPanels with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches HelpPanels.", - "inheritedFrom": { - "name": "ElementWrapper.findHelpPanel", - }, - "name": "findHelpPanel", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findExpandedContent", + "parameters": [], "returnType": { - "name": "HelpPanelWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns a wrapper that matches the Hotspots with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Hotspots.", - "inheritedFrom": { - "name": "ElementWrapper.findHotspot", - }, - "name": "findHotspot", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findExpandIcon", + "parameters": [], "returnType": { - "name": "HotspotWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns a wrapper that matches the Icons with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Icons.", - "inheritedFrom": { - "name": "ElementWrapper.findIcon", - }, - "name": "findIcon", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findHeader", + "parameters": [], "returnType": { - "name": "IconWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns a wrapper that matches the Inputs with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Inputs.", - "inheritedFrom": { - "name": "ElementWrapper.findInput", + "name": "findHeaderDescription", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", }, - "name": "findInput", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + }, + { + "name": "findHeaderText", + "parameters": [], "returnType": { - "name": "InputWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns a wrapper that matches the KeyValuePairs with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches KeyValuePairs.", "inheritedFrom": { - "name": "ElementWrapper.findKeyValuePairs", + "name": "AbstractWrapper.getElement", }, - "name": "findKeyValuePairs", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "getElement", + "parameters": [], "returnType": { - "name": "KeyValuePairsWrapper", - "type": "reference", + "isNullable": false, + "name": "string", }, }, { - "description": "Returns a wrapper that matches the LineCharts with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches LineCharts.", "inheritedFrom": { - "name": "ElementWrapper.findLineChart", + "name": "AbstractWrapper.matches", }, - "name": "findLineChart", + "name": "matches", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "LineChartWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns a wrapper that matches the Links with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Links.", "inheritedFrom": { - "name": "ElementWrapper.findLink", + "name": "AbstractWrapper.toSelector", }, - "name": "findLink", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "toSelector", + "parameters": [], "returnType": { - "name": "LinkWrapper", - "type": "reference", + "isNullable": false, + "name": "string", }, }, + ], + "name": "ExpandableSectionWrapper", + }, + { + "methods": [ { - "description": "Returns a wrapper that matches the Lists with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Lists.", "inheritedFrom": { - "name": "ElementWrapper.findList", + "name": "AbstractWrapper.find", }, - "name": "findList", + "name": "find", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "ListWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns a wrapper that matches the LiveRegions with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches LiveRegions.", "inheritedFrom": { - "name": "ElementWrapper.findLiveRegion", + "name": "AbstractWrapper.findAll", }, - "name": "findLiveRegion", + "name": "findAll", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "LiveRegionWrapper", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns a wrapper that matches the MixedLineBarCharts with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches MixedLineBarCharts.", "inheritedFrom": { - "name": "ElementWrapper.findMixedLineBarChart", + "name": "AbstractWrapper.findAllByClassName", }, - "name": "findMixedLineBarChart", + "name": "findAllByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "MixedLineBarChartWrapper", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns a wrapper that matches the Modals with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Modals.", + "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. +If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", "inheritedFrom": { - "name": "ElementWrapper.findModal", + "name": "AbstractWrapper.findAllComponents", }, - "name": "findModal", + "name": "findAllComponents", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "ComponentClass", + "typeName": "ComponentWrapperClass", }, - ], - "returnType": { - "name": "ModalWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Multiselects with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Multiselects.", - "inheritedFrom": { - "name": "ElementWrapper.findMultiselect", - }, - "name": "findMultiselect", - "parameters": [ { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "MultiselectWrapper", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "Wrapper", + }, + ], }, }, { - "description": "Returns a wrapper that matches the Paginations with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Paginations.", "inheritedFrom": { - "name": "ElementWrapper.findPagination", + "name": "AbstractWrapper.findAny", }, - "name": "findPagination", + "name": "findAny", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "selectors", + "typeName": "Array", }, ], "returnType": { - "name": "PaginationWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns a wrapper that matches the PieCharts with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches PieCharts.", "inheritedFrom": { - "name": "ElementWrapper.findPieChart", + "name": "AbstractWrapper.findByClassName", }, - "name": "findPieChart", + "name": "findByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "PieChartWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns a wrapper that matches the Popovers with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Popovers.", + "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { - "name": "ElementWrapper.findPopover", + "name": "AbstractWrapper.findComponent", }, - "name": "findPopover", + "name": "findComponent", "parameters": [ { + "description": "CSS selector", "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, - ], - "returnType": { - "name": "PopoverWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the ProgressBars with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches ProgressBars.", - "inheritedFrom": { - "name": "ElementWrapper.findProgressBar", - }, - "name": "findProgressBar", - "parameters": [ { + "description": "Component's wrapper class", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "ComponentClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "ProgressBarWrapper", - "type": "reference", + "isNullable": false, + "name": "Wrapper", }, }, { - "description": "Returns a wrapper that matches the PromptInputs with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches PromptInputs.", - "inheritedFrom": { - "name": "ElementWrapper.findPromptInput", - }, - "name": "findPromptInput", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findContent", + "parameters": [], "returnType": { - "name": "PromptInputWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns a wrapper that matches the PropertyFilters with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches PropertyFilters.", "inheritedFrom": { - "name": "ElementWrapper.findPropertyFilter", + "name": "AbstractWrapper.getElement", }, - "name": "findPropertyFilter", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "getElement", + "parameters": [], "returnType": { - "name": "PropertyFilterWrapper", - "type": "reference", + "isNullable": false, + "name": "string", }, }, { - "description": "Returns a wrapper that matches the RadioGroups with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches RadioGroups.", "inheritedFrom": { - "name": "ElementWrapper.findRadioGroup", + "name": "AbstractWrapper.matches", }, - "name": "findRadioGroup", + "name": "matches", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "RadioGroupWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns a wrapper that matches the S3ResourceSelectors with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches S3ResourceSelectors.", "inheritedFrom": { - "name": "ElementWrapper.findS3ResourceSelector", + "name": "AbstractWrapper.toSelector", }, - "name": "findS3ResourceSelector", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "toSelector", + "parameters": [], "returnType": { - "name": "S3ResourceSelectorWrapper", - "type": "reference", + "isNullable": false, + "name": "string", }, }, + ], + "name": "FileDropzoneWrapper", + }, + { + "methods": [ { - "description": "Returns a wrapper that matches the SegmentedControls with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches SegmentedControls.", "inheritedFrom": { - "name": "ElementWrapper.findSegmentedControl", + "name": "AbstractWrapper.find", }, - "name": "findSegmentedControl", + "name": "find", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "SegmentedControlWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns a wrapper that matches the Selects with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Selects.", "inheritedFrom": { - "name": "ElementWrapper.findSelect", + "name": "AbstractWrapper.findAll", }, - "name": "findSelect", + "name": "findAll", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "SelectWrapper", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns a wrapper that matches the SideNavigations with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches SideNavigations.", "inheritedFrom": { - "name": "ElementWrapper.findSideNavigation", + "name": "AbstractWrapper.findAllByClassName", }, - "name": "findSideNavigation", + "name": "findAllByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "SideNavigationWrapper", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns a wrapper that matches the Sliders with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Sliders.", + "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. +If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", "inheritedFrom": { - "name": "ElementWrapper.findSlider", + "name": "AbstractWrapper.findAllComponents", }, - "name": "findSlider", + "name": "findAllComponents", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "ComponentClass", + "typeName": "ComponentWrapperClass", }, - ], - "returnType": { - "name": "SliderWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the SpaceBetweens with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches SpaceBetweens.", - "inheritedFrom": { - "name": "ElementWrapper.findSpaceBetween", - }, - "name": "findSpaceBetween", - "parameters": [ { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "SpaceBetweenWrapper", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "Wrapper", + }, + ], }, }, { - "description": "Returns a wrapper that matches the Spinners with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Spinners.", "inheritedFrom": { - "name": "ElementWrapper.findSpinner", + "name": "AbstractWrapper.findAny", }, - "name": "findSpinner", + "name": "findAny", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "selectors", + "typeName": "Array", }, ], "returnType": { - "name": "SpinnerWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns a wrapper that matches the SplitPanels with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches SplitPanels.", "inheritedFrom": { - "name": "ElementWrapper.findSplitPanel", + "name": "AbstractWrapper.findByClassName", }, - "name": "findSplitPanel", + "name": "findByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "SplitPanelWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns a wrapper that matches the StatusIndicators with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches StatusIndicators.", + "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { - "name": "ElementWrapper.findStatusIndicator", + "name": "AbstractWrapper.findComponent", }, - "name": "findStatusIndicator", + "name": "findComponent", "parameters": [ { + "description": "CSS selector", "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, - ], - "returnType": { - "name": "StatusIndicatorWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Steps with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Steps.", - "inheritedFrom": { - "name": "ElementWrapper.findSteps", - }, - "name": "findSteps", - "parameters": [ { + "description": "Component's wrapper class", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "ComponentClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "StepsWrapper", - "type": "reference", + "isNullable": false, + "name": "Wrapper", }, }, { - "description": "Returns a wrapper that matches the Tables with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Tables.", - "inheritedFrom": { - "name": "ElementWrapper.findTable", + "name": "findNativeInput", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", }, - "name": "findTable", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + }, + { + "name": "findTrigger", + "parameters": [], "returnType": { - "name": "TableWrapper", - "type": "reference", + "isNullable": false, + "name": "ButtonWrapper", }, }, { - "description": "Returns a wrapper that matches the Tabs with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Tabs.", "inheritedFrom": { - "name": "ElementWrapper.findTabs", + "name": "AbstractWrapper.getElement", }, - "name": "findTabs", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "getElement", + "parameters": [], "returnType": { - "name": "TabsWrapper", - "type": "reference", + "isNullable": false, + "name": "string", }, }, { - "description": "Returns a wrapper that matches the TagEditors with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches TagEditors.", "inheritedFrom": { - "name": "ElementWrapper.findTagEditor", + "name": "AbstractWrapper.matches", }, - "name": "findTagEditor", + "name": "matches", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "TagEditorWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns a wrapper that matches the TextContents with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches TextContents.", "inheritedFrom": { - "name": "ElementWrapper.findTextContent", + "name": "AbstractWrapper.toSelector", }, - "name": "findTextContent", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "toSelector", + "parameters": [], "returnType": { - "name": "TextContentWrapper", - "type": "reference", + "isNullable": false, + "name": "string", }, }, + ], + "name": "FileInputWrapper", + }, + { + "methods": [ { - "description": "Returns a wrapper that matches the TextFilters with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches TextFilters.", "inheritedFrom": { - "name": "ElementWrapper.findTextFilter", + "name": "AbstractWrapper.find", }, - "name": "findTextFilter", + "name": "find", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "TextFilterWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns a wrapper that matches the Textareas with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Textareas.", "inheritedFrom": { - "name": "ElementWrapper.findTextarea", + "name": "AbstractWrapper.findAll", }, - "name": "findTextarea", + "name": "findAll", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "TextareaWrapper", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns a wrapper that matches the Tiles with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Tiles.", "inheritedFrom": { - "name": "ElementWrapper.findTiles", + "name": "AbstractWrapper.findAllByClassName", }, - "name": "findTiles", + "name": "findAllByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "TilesWrapper", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Returns a wrapper that matches the TimeInputs with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches TimeInputs.", + "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. +If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", "inheritedFrom": { - "name": "ElementWrapper.findTimeInput", + "name": "AbstractWrapper.findAllComponents", }, - "name": "findTimeInput", + "name": "findAllComponents", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "ComponentClass", + "typeName": "ComponentWrapperClass", }, - ], - "returnType": { - "name": "TimeInputWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the Toggles with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Toggles.", - "inheritedFrom": { - "name": "ElementWrapper.findToggle", - }, - "name": "findToggle", - "parameters": [ { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "ToggleWrapper", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "Wrapper", + }, + ], }, }, { - "description": "Returns a wrapper that matches the ToggleButtons with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches ToggleButtons.", "inheritedFrom": { - "name": "ElementWrapper.findToggleButton", + "name": "AbstractWrapper.findAny", }, - "name": "findToggleButton", + "name": "findAny", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "selectors", + "typeName": "Array", }, ], "returnType": { - "name": "ToggleButtonWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns a wrapper that matches the TokenGroups with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches TokenGroups.", "inheritedFrom": { - "name": "ElementWrapper.findTokenGroup", + "name": "AbstractWrapper.findByClassName", }, - "name": "findTokenGroup", + "name": "findByClassName", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "TokenGroupWrapper", - "type": "reference", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns a wrapper that matches the TopNavigations with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches TopNavigations.", + "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { - "name": "ElementWrapper.findTopNavigation", + "name": "AbstractWrapper.findComponent", }, - "name": "findTopNavigation", + "name": "findComponent", "parameters": [ { + "description": "CSS selector", "flags": { - "isOptional": true, + "isOptional": false, }, "name": "selector", + "typeName": "string", }, - ], - "returnType": { - "name": "TopNavigationWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a wrapper that matches the TreeViews with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches TreeViews.", - "inheritedFrom": { - "name": "ElementWrapper.findTreeView", - }, - "name": "findTreeView", - "parameters": [ { + "description": "Component's wrapper class", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "ComponentClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "TreeViewWrapper", - "type": "reference", + "isNullable": false, + "name": "Wrapper", }, }, { - "description": "Returns a wrapper that matches the TutorialPanels with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches TutorialPanels.", - "inheritedFrom": { - "name": "ElementWrapper.findTutorialPanel", - }, - "name": "findTutorialPanel", + "description": "Returns a file token from for a given index.", + "name": "findFileToken", "parameters": [ { "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "selector", + "name": "fileTokenIndex", + "typeName": "number", }, ], "returnType": { - "name": "TutorialPanelWrapper", - "type": "reference", + "isNullable": false, + "name": "FileTokenWrapper", }, }, { - "description": "Returns a wrapper that matches the Wizards with the specified CSS selector. -If no CSS selector is specified, returns a wrapper that matches Wizards.", - "inheritedFrom": { - "name": "ElementWrapper.findWizard", - }, - "name": "findWizard", - "parameters": [ - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findFileTokens", + "parameters": [], "returnType": { - "name": "WizardWrapper", - "type": "reference", + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "FileTokenWrapper", + }, + ], }, }, { @@ -129543,8 +87470,8 @@ If no CSS selector is specified, returns a wrapper that matches Wizards.", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -129562,8 +87489,8 @@ If no CSS selector is specified, returns a wrapper that matches Wizards.", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -129573,12 +87500,12 @@ If no CSS selector is specified, returns a wrapper that matches Wizards.", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "TooltipWrapper", + "name": "FileTokenGroupWrapper", }, { "methods": [ @@ -129597,8 +87524,8 @@ If no CSS selector is specified, returns a wrapper that matches Wizards.", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -129616,12 +87543,11 @@ If no CSS selector is specified, returns a wrapper that matches Wizards.", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -129641,12 +87567,11 @@ If no CSS selector is specified, returns a wrapper that matches Wizards.", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -129664,22 +87589,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -129695,12 +87621,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -129718,22 +87644,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -129741,77 +87666,73 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", }, }, { - "name": "findGroupPairs", + "name": "findFileError", "parameters": [], "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "KeyValuePairsPairWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "ElementWrapper", }, }, { - "name": "findGroupTitle", + "name": "findFileLastModified", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "inheritedFrom": { - "name": "KeyValuePairsPairWrapper.findInfo", - }, - "name": "findInfo", + "name": "findFileName", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "inheritedFrom": { - "name": "KeyValuePairsPairWrapper.findLabel", + "name": "findFileSize", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", }, - "name": "findLabel", + }, + { + "name": "findFileThumbnail", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "inheritedFrom": { - "name": "KeyValuePairsPairWrapper.findValue", + "name": "findFileWarning", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", }, - "name": "findValue", + }, + { + "name": "findRemoveButton", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { @@ -129821,8 +87742,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -129840,8 +87761,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -129851,12 +87772,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "KeyValuePairsItemWrapper", + "name": "FileTokenWrapper", }, { "methods": [ @@ -129875,8 +87796,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -129894,12 +87815,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -129919,12 +87839,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -129942,22 +87861,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -129973,12 +87893,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -129996,22 +87916,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -130019,278 +87938,96 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", }, }, { - "name": "findInfo", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findLabel", + "name": "findConstraint", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "name": "findValue", + "name": "findError", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", + "description": "Returns a file token from for a given index.", + "name": "findFileToken", "parameters": [ { "flags": { "isOptional": false, }, - "name": "selector", - "typeName": "string", + "name": "fileTokenIndex", + "typeName": "number", }, ], "returnType": { - "name": "ElementWrapper", - "type": "reference", + "isNullable": false, + "name": "FileTokenWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", + "name": "findFileTokens", "parameters": [], "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "KeyValuePairsPairWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], - "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { - "name": "Wrapper", - "type": "typeParameter", + "name": "FileTokenWrapper", }, ], }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selectors", - "typeName": "Array", - }, - ], + "name": "findNativeInput", + "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], + "description": "Returns the token toggle button.", + "name": "findTokenToggle", + "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", - "parameters": [ - { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], + "name": "findUploadButton", + "parameters": [], "returnType": { - "name": "Wrapper", - "type": "typeParameter", + "isNullable": false, + "name": "ButtonWrapper", }, }, { - "name": "findItems", + "name": "findWarning", "parameters": [], "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "KeyValuePairsItemWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -130300,8 +88037,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -130319,8 +88056,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -130330,12 +88067,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "KeyValuePairsWrapper", + "name": "FileUploadWrapper", }, { "methods": [ @@ -130354,8 +88091,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -130373,12 +88110,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -130398,12 +88134,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -130421,22 +88156,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -130452,25 +88188,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a focusable element that controls keyboard interactions.", - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findApplication", - }, - "name": "findApplication", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { @@ -130488,34 +88211,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findChart", - }, - "name": "findChart", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -130523,166 +88233,68 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "inheritedFrom": { - "name": "CommonChartWrapper.findDefaultFilter", - }, - "name": "findDefaultFilter", - "parameters": [], - "returnType": { - "name": "ChartFilterWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "CommonChartWrapper.findDetailPopover", - }, - "name": "findDetailPopover", - "parameters": [], - "returnType": { - "name": "ChartPopoverWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findFilterContainer", - }, - "name": "findFilterContainer", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findHighlightedSeries", - }, - "name": "findHighlightedSeries", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "inheritedFrom": { - "name": "CommonChartWrapper.findLegend", - }, - "name": "findLegend", - "parameters": [], - "returnType": { - "name": "ChartLegendWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns an array of chart series. Note that thresholds count as series as well.", - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findSeries", - }, - "name": "findSeries", + "description": "Returns the individual flashes of this flashbar. + +If the items are stacked, only the item at the top of the stack is returned.", + "name": "findItems", "parameters": [], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { - "name": "ElementWrapper", - "type": "reference", + "name": "FlashWrapper", }, ], }, }, { - "inheritedFrom": { - "name": "CommonChartWrapper.findStatusContainer", - }, - "name": "findStatusContainer", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findXAxisTitle", - }, - "name": "findXAxisTitle", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findXTicks", - }, - "name": "findXTicks", - "parameters": [], + "description": "Returns the individual flashes of this flashbar given the item type. + +If the items are stacked, only the item at the top of the stack is returned. + +If an item is loading its type is considered as "info".", + "name": "findItemsByType", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "type", + "typeName": ""error" | "success" | "info" | "warning"", + }, + ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { - "name": "ElementWrapper", - "type": "reference", + "name": "FlashWrapper", }, ], }, }, { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findYAxisTitle", - }, - "name": "findYAxisTitle", + "description": "Returns the toggle button that expands and collapses stacked notifications.", + "name": "findToggleButton", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findYTicks", - }, - "name": "findYTicks", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], }, }, { @@ -130692,8 +88304,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -130711,8 +88323,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -130722,12 +88334,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "LineChartWrapper", + "name": "FlashbarWrapper", }, { "methods": [ @@ -130746,8 +88358,16 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findActions", + "parameters": [], + "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -130765,12 +88385,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -130790,12 +88409,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -130813,22 +88431,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -130844,12 +88463,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -130867,22 +88486,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -130890,18 +88508,49 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", + }, + }, + { + "name": "findContent", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findError", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findHeader", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findSecondaryActions", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -130911,8 +88560,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -130930,8 +88579,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -130941,12 +88590,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "LinkWrapper", + "name": "FormWrapper", }, { "methods": [ @@ -130965,20 +88614,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "StructuredItemWrapper.findActions", - }, - "name": "findActions", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { @@ -130996,12 +88633,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -131021,12 +88657,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -131044,22 +88679,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -131075,12 +88711,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -131098,22 +88734,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -131121,63 +88756,81 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", }, }, { - "inheritedFrom": { - "name": "StructuredItemWrapper.findContent", + "name": "findConstraint", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", }, - "name": "findContent", + }, + { + "name": "findControl", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "name": "findDragHandle", + "name": "findDescription", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "inheritedFrom": { - "name": "StructuredItemWrapper.findIcon", + "name": "findError", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", }, - "name": "findIcon", + }, + { + "name": "findInfo", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "inheritedFrom": { - "name": "StructuredItemWrapper.findSecondaryContent", + "name": "findLabel", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", }, - "name": "findSecondaryContent", + }, + { + "name": "findSecondaryControl", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findWarning", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { @@ -131187,8 +88840,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -131206,8 +88859,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -131217,12 +88870,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "ListItemWrapper", + "name": "FormFieldWrapper", }, { "methods": [ @@ -131241,8 +88894,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -131260,12 +88913,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -131285,12 +88937,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -131308,22 +88959,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -131339,12 +88991,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -131362,95 +89014,57 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", + "description": "Returns a column from the grid for a given index.", + "name": "findColumn", "parameters": [ { - "description": " -CSS selector", - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", + "description": "1-based index of the column to return.", "flags": { "isOptional": false, }, - "name": "ComponentClass", - "typeName": "WrapperClass", + "name": "columnIndex", + "typeName": "number", }, ], "returnType": { - "name": "Wrapper", - "type": "typeParameter", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns an item for a given id.", - "name": "findItemById", + "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", + "inheritedFrom": { + "name": "AbstractWrapper.findComponent", + }, + "name": "findComponent", "parameters": [ { + "description": "CSS selector", "flags": { "isOptional": false, }, - "name": "id", + "name": "selector", "typeName": "string", }, - ], - "returnType": { - "name": "ListItemWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns an item for a given index.", - "name": "findItemByIndex", - "parameters": [ { - "description": " -1-based index of the item to return. -", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, - "name": "index", - "typeName": "number", + "name": "ComponentClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "ListItemWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns all list items.", - "name": "findItems", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ListItemWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "Wrapper", }, }, { @@ -131460,8 +89074,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -131479,8 +89093,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -131490,12 +89104,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "ListWrapper", + "name": "GridWrapper", }, { "methods": [ @@ -131514,8 +89128,16 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findActions", + "parameters": [], + "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -131533,12 +89155,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -131558,12 +89179,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -131581,22 +89201,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -131612,12 +89233,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -131635,22 +89256,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -131658,18 +89278,49 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", + }, + }, + { + "name": "findCounter", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findDescription", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findHeadingText", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findInfo", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -131679,8 +89330,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -131698,8 +89349,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -131709,12 +89360,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "LiveRegionWrapper", + "name": "HeaderWrapper", }, { "methods": [ @@ -131733,8 +89384,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -131752,12 +89403,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -131777,12 +89427,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -131800,22 +89449,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -131831,22 +89481,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a focusable element that controls keyboard interactions.", - "name": "findApplication", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { @@ -131864,31 +89504,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findChart", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -131896,145 +89526,41 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "inheritedFrom": { - "name": "CommonChartWrapper.findDefaultFilter", - }, - "name": "findDefaultFilter", - "parameters": [], - "returnType": { - "name": "ChartFilterWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "inheritedFrom": { - "name": "CommonChartWrapper.findDetailPopover", - }, - "name": "findDetailPopover", - "parameters": [], - "returnType": { - "name": "ChartPopoverWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findFilterContainer", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findHighlightedSeries", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "CommonChartWrapper.findLegend", - }, - "name": "findLegend", - "parameters": [], - "returnType": { - "name": "ChartLegendWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns an array of chart series. Note that thresholds count as series as well.", - "name": "findSeries", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "CommonChartWrapper.findStatusContainer", - }, - "name": "findStatusContainer", + "name": "findContent", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "name": "findXAxisTitle", + "name": "findFooter", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "name": "findXTicks", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "name": "findYAxisTitle", + "name": "findHeader", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findYTicks", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], }, }, { @@ -132044,8 +89570,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -132063,8 +89589,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -132074,12 +89600,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "BaseCartesianChartWrapper", + "name": "HelpPanelWrapper", }, { "methods": [ @@ -132098,8 +89624,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -132117,12 +89643,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -132142,12 +89667,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -132165,26 +89689,35 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, }, + { + "name": "findAnnotation", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "AnnotationWrapper", + }, + }, { "inheritedFrom": { "name": "AbstractWrapper.findAny", @@ -132196,40 +89729,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns a focusable element that controls keyboard interactions.", - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findApplication", - }, - "name": "findApplication", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns an array of bar groups, which are used for mouse navigation if a chart contains bar series.", - "name": "findBarGroups", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], }, }, { @@ -132247,34 +89752,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findChart", - }, - "name": "findChart", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -132282,166 +89774,25 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "inheritedFrom": { - "name": "CommonChartWrapper.findDefaultFilter", - }, - "name": "findDefaultFilter", - "parameters": [], - "returnType": { - "name": "ChartFilterWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "CommonChartWrapper.findDetailPopover", - }, - "name": "findDetailPopover", - "parameters": [], - "returnType": { - "name": "ChartPopoverWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findFilterContainer", - }, - "name": "findFilterContainer", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findHighlightedSeries", - }, - "name": "findHighlightedSeries", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "CommonChartWrapper.findLegend", - }, - "name": "findLegend", - "parameters": [], - "returnType": { - "name": "ChartLegendWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns an array of chart series. Note that thresholds count as series as well.", - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findSeries", - }, - "name": "findSeries", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "CommonChartWrapper.findStatusContainer", - }, - "name": "findStatusContainer", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findXAxisTitle", - }, - "name": "findXAxisTitle", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findXTicks", - }, - "name": "findXTicks", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findYAxisTitle", - }, - "name": "findYAxisTitle", + "name": "findTrigger", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "BaseCartesianChartWrapper.findYTicks", - }, - "name": "findYTicks", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], }, }, { @@ -132451,8 +89802,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -132470,8 +89821,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -132481,12 +89832,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "MixedLineBarChartWrapper", + "name": "HotspotWrapper", }, { "methods": [ @@ -132505,8 +89856,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -132524,12 +89875,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -132549,12 +89899,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -132572,22 +89921,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -132603,12 +89953,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -132626,22 +89976,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -132649,54 +89998,17 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findContent", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findDismissButton", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findFooter", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findHeader", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { @@ -132706,8 +90018,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -132725,8 +90037,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -132736,12 +90048,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "ModalWrapper", + "name": "IconWrapper", }, { "methods": [ @@ -132760,8 +90072,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -132779,12 +90091,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -132804,12 +90115,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -132827,22 +90137,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -132858,12 +90169,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -132881,22 +90192,29 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findClearButton", + "parameters": [], + "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -132904,189 +90222,28 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", }, }, { - "description": "", "inheritedFrom": { - "name": "DropdownHostComponentWrapper.findDropdown", - }, - "name": "findDropdown", - "parameters": [ - { - "defaultValue": "{ - expandToViewport: false - }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], - "returnType": { - "name": "DropdownContentWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "", - "name": "findErrorRecoveryButton", - "parameters": [ - { - "defaultValue": "{ - expandToViewport: false - }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns the input that is used for filtering.", - "name": "findFilteringInput", - "parameters": [ - { - "defaultValue": "{ - expandToViewport: false - }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], - "returnType": { - "name": "InputWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findInlineLabel", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findPlaceholder", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "", - "name": "findStatusIndicator", - "parameters": [ - { - "defaultValue": "{ - expandToViewport: false - }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns a token.", - "name": "findToken", - "parameters": [ - { - "description": " -1-based index of the token to return -", - "flags": { - "isOptional": false, - }, - "name": "tokenIndex", - "typeName": "number", - }, - ], - "returnType": { - "name": "TokenWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns a token toggle button.", - "name": "findTokenToggle", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findTokens", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "TokenWrapper", - "type": "reference", - }, - ], + "name": "BaseInputWrapper.findNativeInput", }, - }, - { - "name": "findTrigger", + "name": "findNativeInput", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { @@ -133096,8 +90253,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -133115,8 +90272,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -133126,12 +90283,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "MultiselectWrapper", + "name": "InputWrapper", }, { "methods": [ @@ -133150,8 +90307,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -133169,12 +90326,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -133194,12 +90350,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -133217,22 +90372,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -133248,12 +90404,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -133271,22 +90427,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -133294,82 +90449,32 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", }, }, { - "name": "findCurrentPage", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findNextPageButton", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns a page number for a given index.", - "name": "findPageNumberByIndex", - "parameters": [ - { - "description": " -1-based index of the page number to return. -", - "flags": { - "isOptional": false, - }, - "name": "index", - "typeName": "number", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findPageNumbers", + "name": "findItems", "parameters": [], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { - "name": "ElementWrapper", - "type": "reference", + "name": "KeyValuePairsItemWrapper", }, ], }, }, - { - "name": "findPreviousPageButton", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, { "inheritedFrom": { "name": "AbstractWrapper.getElement", @@ -133377,8 +90482,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -133396,8 +90501,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -133407,12 +90512,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "PaginationWrapper", + "name": "KeyValuePairsWrapper", }, { "methods": [ @@ -133431,8 +90536,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -133450,12 +90555,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -133475,12 +90579,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -133498,22 +90601,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -133529,22 +90633,24 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a focusable element that controls keyboard interactions.", + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findApplication", + }, "name": "findApplication", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { @@ -133562,31 +90668,32 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findChart", + }, "name": "findChart", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -133594,18 +90701,17 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", }, }, { @@ -133615,9 +90721,8 @@ Component's wrapper class", "name": "findDefaultFilter", "parameters": [], "returnType": { + "isNullable": false, "name": "ChartFilterWrapper", - "type": "reference", - "typeArguments": [], }, }, { @@ -133627,45 +90732,30 @@ Component's wrapper class", "name": "findDetailPopover", "parameters": [], "returnType": { + "isNullable": false, "name": "ChartPopoverWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "name": "findFilterContainer", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findFilterContainer", }, - }, - { - "name": "findHighlightedSegment", + "name": "findFilterContainer", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "name": "findHighlightedSegmentLabel", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findHighlightedSeries", }, - }, - { - "name": "findInnerContent", + "name": "findHighlightedSeries", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { @@ -133675,49 +90765,90 @@ Component's wrapper class", "name": "findLegend", "parameters": [], "returnType": { + "isNullable": false, "name": "ChartLegendWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "name": "findSegmentLabels", + "description": "Returns an array of chart series. Note that thresholds count as series as well.", + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findSeries", + }, + "name": "findSeries", "parameters": [], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, }, { - "name": "findSegments", + "inheritedFrom": { + "name": "CommonChartWrapper.findStatusContainer", + }, + "name": "findStatusContainer", "parameters": [], "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findXAxisTitle", + }, + "name": "findXAxisTitle", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findXTicks", + }, + "name": "findXTicks", + "parameters": [], + "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, }, { "inheritedFrom": { - "name": "CommonChartWrapper.findStatusContainer", + "name": "BaseCartesianChartWrapper.findYAxisTitle", }, - "name": "findStatusContainer", + "name": "findYAxisTitle", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], + }, + }, + { + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findYTicks", + }, + "name": "findYTicks", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -133727,8 +90858,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -133746,8 +90877,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -133757,12 +90888,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "PieChartWrapper", + "name": "LineChartWrapper", }, { "methods": [ @@ -133781,8 +90912,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -133800,12 +90931,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -133825,12 +90955,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -133848,22 +90977,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -133879,12 +91009,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -133902,22 +91032,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -133925,99 +91054,17 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "description": "", - "name": "findContent", - "parameters": [ - { - "defaultValue": "{ - renderWithPortal: false - }", - "description": " - -* renderWithPortal (boolean) - Flag to find the content when the popover is rendered with a portal -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "", - "name": "findDismissButton", - "parameters": [ - { - "defaultValue": "{ - renderWithPortal: false - }", - "description": " - -* renderWithPortal (boolean) - Flag to find the dismiss button when the popover is rendered with a portal -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "", - "name": "findHeader", - "parameters": [ - { - "defaultValue": "{ - renderWithPortal: false - }", - "description": " - -* renderWithPortal (boolean) - Flag to find the header when the popover is rendered with a portal -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findTrigger", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { @@ -134027,8 +91074,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -134046,8 +91093,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -134057,12 +91104,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "PopoverWrapper", + "name": "LinkWrapper", }, { "methods": [ @@ -134081,17 +91128,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findAdditionalInfo", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { @@ -134109,12 +91147,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -134134,12 +91171,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -134157,22 +91193,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -134188,12 +91225,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -134211,22 +91248,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -134234,59 +91270,66 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findPercentageText", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "name": "findResultButton", - "parameters": [], + "description": "Returns an item for a given id.", + "name": "findItemById", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "id", + "typeName": "string", + }, + ], "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "ListItemWrapper", }, }, { - "description": "Returns the result text.", - "name": "findResultText", + "description": "Returns an item for a given index.", + "name": "findItemByIndex", "parameters": [ { - "description": " - - -[optional] Status of the result text. It can be aither "error" or "succes". -If not specified, the method returns the result text that is currently displayed, independently of the result status. -", + "description": "1-based index of the item to return.", "flags": { - "isOptional": true, + "isOptional": false, }, - "name": "status", + "name": "index", + "typeName": "number", }, ], "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "ListItemWrapper", + }, + }, + { + "description": "Returns all list items.", + "name": "findItems", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ListItemWrapper", + }, + ], }, }, { @@ -134296,8 +91339,8 @@ If not specified, the method returns the result text that is currently displayed "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -134315,8 +91358,8 @@ If not specified, the method returns the result text that is currently displayed }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -134326,12 +91369,12 @@ If not specified, the method returns the result text that is currently displayed "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "ProgressBarWrapper", + "name": "ListWrapper", }, { "methods": [ @@ -134350,18 +91393,19 @@ If not specified, the method returns the result text that is currently displayed }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { - "description": "Finds the action button. Note that, despite its typings, this may return null.", - "name": "findActionButton", + "inheritedFrom": { + "name": "StructuredItemWrapper.findActions", + }, + "name": "findActions", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { @@ -134379,12 +91423,11 @@ If not specified, the method returns the result text that is currently displayed }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -134404,12 +91447,11 @@ If not specified, the method returns the result text that is currently displayed }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -134427,22 +91469,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -134458,12 +91501,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -134481,22 +91524,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -134504,55 +91546,58 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", }, }, { - "name": "findCustomPrimaryAction", + "inheritedFrom": { + "name": "StructuredItemWrapper.findContent", + }, + "name": "findContent", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "name": "findNativeTextarea", + "name": "findDragHandle", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "description": "Finds the secondary actions slot. Note that, despite its typings, this may return null.", - "name": "findSecondaryActions", + "inheritedFrom": { + "name": "StructuredItemWrapper.findIcon", + }, + "name": "findIcon", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { + "inheritedFrom": { + "name": "StructuredItemWrapper.findSecondaryContent", + }, "name": "findSecondaryContent", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { @@ -134562,8 +91607,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -134581,8 +91626,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -134592,12 +91637,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "PromptInputWrapper", + "name": "ListItemWrapper", }, { "methods": [ @@ -134616,8 +91661,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -134635,12 +91680,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -134660,12 +91704,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -134683,22 +91726,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -134714,12 +91758,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -134737,22 +91781,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -134760,45 +91803,17 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findLabel", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findRemoveButton", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findTokenOperation", - "parameters": [], - "returnType": { - "name": "SelectWrapper", - "type": "reference", - "typeArguments": [], }, }, { @@ -134808,8 +91823,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -134827,8 +91842,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -134838,12 +91853,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "FilteringGroupedTokenWrapper", + "name": "LiveRegionWrapper", }, { "methods": [ @@ -134862,8 +91877,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -134881,12 +91896,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -134906,12 +91920,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -134929,22 +91942,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -134960,12 +91974,38 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", + }, + }, + { + "description": "Returns a focusable element that controls keyboard interactions.", + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findApplication", + }, + "name": "findApplication", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "description": "Returns an array of bar groups, which are used for mouse navigation if a chart contains bar series.", + "name": "findBarGroups", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -134983,22 +92023,32 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findChart", + }, + "name": "findChart", + "parameters": [], + "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -135006,87 +92056,154 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", }, }, { - "name": "findEditButton", + "inheritedFrom": { + "name": "CommonChartWrapper.findDefaultFilter", + }, + "name": "findDefaultFilter", "parameters": [], "returnType": { + "isNullable": false, + "name": "ChartFilterWrapper", + }, + }, + { + "inheritedFrom": { + "name": "CommonChartWrapper.findDetailPopover", + }, + "name": "findDetailPopover", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ChartPopoverWrapper", + }, + }, + { + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findFilterContainer", + }, + "name": "findFilterContainer", + "parameters": [], + "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "description": "Returns dropdown content of editing token if opened or \`null\` otherwise.", - "name": "findEditorDropdown", - "parameters": [ - { - "defaultValue": "{ - expandToViewport: false - }", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findHighlightedSeries", + }, + "name": "findHighlightedSeries", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "inheritedFrom": { + "name": "CommonChartWrapper.findLegend", + }, + "name": "findLegend", + "parameters": [], "returnType": { - "name": "null | PropertyFilterEditorDropdownWrapper", - "type": "union", + "isNullable": false, + "name": "ChartLegendWrapper", }, }, { - "name": "findGroupTokens", + "description": "Returns an array of chart series. Note that thresholds count as series as well.", + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findSeries", + }, + "name": "findSeries", "parameters": [], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { - "name": "FilteringGroupedTokenWrapper", - "type": "reference", + "name": "ElementWrapper", }, ], }, }, { - "name": "findLabel", + "inheritedFrom": { + "name": "CommonChartWrapper.findStatusContainer", + }, + "name": "findStatusContainer", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "name": "findRemoveButton", + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findXAxisTitle", + }, + "name": "findXAxisTitle", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "name": "findTokenOperation", + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findXTicks", + }, + "name": "findXTicks", "parameters": [], "returnType": { - "name": "SelectWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findYAxisTitle", + }, + "name": "findYAxisTitle", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "inheritedFrom": { + "name": "BaseCartesianChartWrapper.findYTicks", + }, + "name": "findYTicks", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -135096,8 +92213,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -135115,8 +92232,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -135126,12 +92243,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "FilteringTokenWrapper", + "name": "MixedLineBarChartWrapper", }, { "methods": [ @@ -135150,8 +92267,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -135169,12 +92286,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -135194,12 +92310,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -135217,22 +92332,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -135248,12 +92364,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -135271,31 +92387,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findCancelButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -135303,133 +92409,49 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findDismissButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "name": "findForm", + "name": "findContent", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "name": "findHeader", + "name": "findDismissButton", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "name": "findOperatorField", - "parameters": [ - { - "defaultValue": "1", - "flags": { - "isOptional": false, - }, - "name": "index", - "typeName": "number", - }, - ], - "returnType": { - "name": "FormFieldWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findPropertyField", - "parameters": [ - { - "defaultValue": "1", - "flags": { - "isOptional": false, - }, - "name": "index", - "typeName": "number", - }, - ], - "returnType": { - "name": "FormFieldWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findSubmitButton", + "name": "findFooter", "parameters": [], "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "ElementWrapper", }, }, { - "name": "findTokenAddActions", + "name": "findHeader", "parameters": [], "returnType": { - "name": "null | ButtonDropdownWrapper", - "type": "union", - }, - }, - { - "name": "findTokenRemoveActions", - "parameters": [ - { - "defaultValue": "1", - "flags": { - "isOptional": false, - }, - "name": "index", - "typeName": "number", - }, - ], - "returnType": { - "name": "null | ButtonDropdownWrapper", - "type": "union", - }, - }, - { - "name": "findValueField", - "parameters": [ - { - "defaultValue": "1", - "flags": { - "isOptional": false, - }, - "name": "index", - "typeName": "number", - }, - ], - "returnType": { - "name": "FormFieldWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -135439,8 +92461,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -135458,8 +92480,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -135469,12 +92491,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "PropertyFilterEditorDropdownWrapper", + "name": "ModalWrapper", }, { "methods": [ @@ -135493,8 +92515,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -135512,12 +92534,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -135537,12 +92558,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -135560,22 +92580,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -135591,12 +92612,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -135614,34 +92635,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "InputWrapper.findClearButton", - }, - "name": "findClearButton", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -135649,54 +92657,22 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "description": "Returns the element containing the \`filteringConstraintText\` slot.", - "name": "findConstraint", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns the element containing the \`customControl\` slot.", - "name": "findCustomControl", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "description": "Returns the element containing the \`customFilterActions\` slot.", - "name": "findCustomFilterActions", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "", "inheritedFrom": { - "name": "AutosuggestWrapper.findDropdown", + "name": "DropdownHostComponentWrapper.findDropdown", }, "name": "findDropdown", "parameters": [ @@ -135704,204 +92680,142 @@ Component's wrapper class", "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", "flags": { "isOptional": false, }, "name": "options", + "typeName": "{ expandToViewport: boolean; }", }, ], "returnType": { - "name": "AutosuggestDropdownWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "DropdownContentWrapper", }, }, { - "description": "", - "inheritedFrom": { - "name": "AutosuggestWrapper.findEnteredTextOption", - }, - "name": "findEnteredTextOption", + "name": "findErrorRecoveryButton", "parameters": [ { "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", "flags": { "isOptional": false, }, "name": "options", + "typeName": "{ expandToViewport: boolean; }", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "description": "", - "inheritedFrom": { - "name": "AutosuggestWrapper.findErrorRecoveryButton", - }, - "name": "findErrorRecoveryButton", + "description": "Returns the input that is used for filtering.", + "name": "findFilteringInput", "parameters": [ { "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", "flags": { "isOptional": false, }, "name": "options", + "typeName": "{ expandToViewport: boolean; }", }, ], "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "InputWrapper", }, }, { - "inheritedFrom": { - "name": "BaseInputWrapper.findNativeInput", + "name": "findInlineLabel", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", }, - "name": "findNativeInput", + }, + { + "name": "findPlaceholder", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "description": "Returns custom property form cancel button.", - "name": "findPropertyCancelButton", + "name": "findStatusIndicator", "parameters": [ { "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", "flags": { "isOptional": false, }, "name": "options", + "typeName": "{ expandToViewport: boolean; }", }, ], "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns custom property form submit button.", - "name": "findPropertySubmitButton", + "description": "Returns a token.", + "name": "findToken", "parameters": [ { - "defaultValue": "{ - expandToViewport: false - }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", + "description": "1-based index of the token to return", "flags": { "isOptional": false, }, - "name": "options", + "name": "tokenIndex", + "typeName": "number", }, ], "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns the button that removes all current tokens.", - "name": "findRemoveAllButton", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "TokenWrapper", }, }, { - "name": "findResultsCount", + "name": "findTokens", "parameters": [], "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "", - "inheritedFrom": { - "name": "AutosuggestWrapper.findStatusIndicator", - }, - "name": "findStatusIndicator", - "parameters": [ - { - "defaultValue": "{ - expandToViewport: false - }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", - "flags": { - "isOptional": false, + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "TokenWrapper", }, - "name": "options", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], + ], }, }, { - "description": "Returns the button that toggles if the tokens above \`tokenLimit\` are visible.", + "description": "Returns a token toggle button.", "name": "findTokenToggle", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "name": "findTokens", + "name": "findTrigger", "parameters": [], "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "FilteringTokenWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -135911,8 +92825,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -135930,8 +92844,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -135941,12 +92855,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "PropertyFilterWrapper", + "name": "MultiselectWrapper", }, { "methods": [ @@ -135965,8 +92879,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -135984,12 +92898,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -136009,12 +92922,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -136032,22 +92944,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -136063,26 +92976,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findButtons", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "RadioButtonWrapper", - "type": "reference", - }, - ], }, }, { @@ -136100,22 +92999,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -136123,281 +93021,212 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findInputByValue", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "value", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", + "name": "findDisabledOptions", "parameters": [], "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "OptionWrapper", }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", + ], }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", + "name": "findFooterRegion", "parameters": [], "returnType": { - "name": "string", - "type": "intrinsic", + "isNullable": false, + "name": "ElementWrapper", }, }, - ], - "name": "RadioGroupWrapper", - }, - { - "methods": [ { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", + "description": "Returns an option group from the dropdown.", + "name": "findGroup", "parameters": [ { + "description": "1-based index of the group to select.", "flags": { "isOptional": false, }, - "name": "selector", - "typeName": "string", + "name": "index", + "typeName": "number", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], + "description": "Returns all option groups in the dropdown.", + "name": "findGroups", + "parameters": [], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", + "name": "findHighlightedAriaLiveRegion", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], + }, + { + "description": "Returns highlighted text fragments from all of the options. +Options get highlighted when they match the value of the input field.", + "name": "findHighlightedMatches", + "parameters": [], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, }, { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "name": "findHighlightedOption", + "parameters": [], "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], + "isNullable": false, + "name": "OptionWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", + "name": "findOpenDropdown", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", }, - "name": "findAny", + }, + { + "description": "Returns an option from the dropdown.", + "name": "findOption", "parameters": [ { + "description": "1-based index of the option to select.", "flags": { "isOptional": false, }, - "name": "selectors", - "typeName": "Array", + "name": "optionIndex", + "typeName": "number", }, ], "returnType": { - "name": "ElementWrapper", - "type": "reference", + "isNullable": false, + "name": "OptionWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", + "name": "findOptionByValue", "parameters": [ { "flags": { "isOptional": false, }, - "name": "className", + "name": "value", "typeName": "string", }, ], "returnType": { - "name": "ElementWrapper", - "type": "reference", + "isNullable": false, + "name": "OptionWrapper", }, }, { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", + "description": "Returns an option from the dropdown.", + "name": "findOptionInGroup", "parameters": [ { - "description": " -CSS selector", + "description": "1-based index of the group to select an option in.", "flags": { "isOptional": false, }, - "name": "selector", - "typeName": "string", + "name": "groupIndex", + "typeName": "number", }, { - "description": " -Component's wrapper class", + "description": "1-based index of the option to select.", "flags": { "isOptional": false, }, - "name": "ComponentClass", - "typeName": "WrapperClass", + "name": "optionIndex", + "typeName": "number", }, ], "returnType": { - "name": "Wrapper", - "type": "typeParameter", + "isNullable": false, + "name": "OptionWrapper", }, }, { - "name": "findDescription", + "name": "findOptions", "parameters": [], "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "OptionWrapper", + }, + ], }, }, { - "name": "findLabel", + "description": "Use this element to scroll through the list of options", + "name": "findOptionsContainer", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "name": "findNativeInput", + "name": "findSelectAll", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], + }, + }, + { + "name": "findSelectedOptions", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "OptionWrapper", + }, + ], }, }, { @@ -136407,8 +93236,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -136426,8 +93255,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -136437,12 +93266,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "RadioButtonWrapper", + "name": "DropdownContentWrapper", }, { "methods": [ @@ -136461,8 +93290,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -136480,12 +93309,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -136505,12 +93333,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -136528,22 +93355,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -136559,21 +93387,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findBrowseButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], }, }, { @@ -136591,22 +93410,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -136614,45 +93432,72 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", }, }, { - "name": "findUriInput", + "name": "findCurrentPage", "parameters": [], "returnType": { - "name": "InputWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "ElementWrapper", }, }, { - "name": "findVersionsSelect", + "name": "findNextPageButton", "parameters": [], "returnType": { - "name": "SelectWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "ElementWrapper", }, }, { - "name": "findViewButton", + "description": "Returns a page number for a given index.", + "name": "findPageNumberByIndex", + "parameters": [ + { + "description": "1-based index of the page number to return.", + "flags": { + "isOptional": false, + }, + "name": "index", + "typeName": "number", + }, + ], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findPageNumbers", "parameters": [], "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], + }, + }, + { + "name": "findPreviousPageButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -136662,8 +93507,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -136681,8 +93526,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -136692,12 +93537,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "S3InContextWrapper", + "name": "PaginationWrapper", }, { "methods": [ @@ -136716,8 +93561,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -136735,12 +93580,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -136760,12 +93604,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -136783,22 +93626,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -136814,12 +93658,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "description": "Returns a focusable element that controls keyboard interactions.", + "name": "findApplication", + "parameters": [], + "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -136837,22 +93690,29 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findChart", + "parameters": [], + "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -136860,75 +93720,119 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", }, }, { "inheritedFrom": { - "name": "ModalWrapper.findContent", + "name": "CommonChartWrapper.findDefaultFilter", }, - "name": "findContent", + "name": "findDefaultFilter", "parameters": [], "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "ChartFilterWrapper", }, }, { "inheritedFrom": { - "name": "ModalWrapper.findDismissButton", + "name": "CommonChartWrapper.findDetailPopover", }, - "name": "findDismissButton", + "name": "findDetailPopover", "parameters": [], "returnType": { + "isNullable": false, + "name": "ChartPopoverWrapper", + }, + }, + { + "name": "findFilterContainer", + "parameters": [], + "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "inheritedFrom": { - "name": "ModalWrapper.findFooter", + "name": "findHighlightedSegment", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", }, - "name": "findFooter", + }, + { + "name": "findHighlightedSegmentLabel", "parameters": [], "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findInnerContent", + "parameters": [], + "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { "inheritedFrom": { - "name": "ModalWrapper.findHeader", + "name": "CommonChartWrapper.findLegend", }, - "name": "findHeader", + "name": "findLegend", "parameters": [], "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "ChartLegendWrapper", }, }, { - "name": "findSubmitButton", + "name": "findSegmentLabels", "parameters": [], "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], + }, + }, + { + "name": "findSegments", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "CommonChartWrapper.findStatusContainer", + }, + "name": "findStatusContainer", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -136938,8 +93842,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -136957,8 +93861,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -136968,12 +93872,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "S3ModalWrapper", + "name": "PieChartWrapper", }, { "methods": [ @@ -136992,17 +93896,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findAlertSlot", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { @@ -137020,12 +93915,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -137045,12 +93939,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -137068,22 +93961,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -137099,12 +93993,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -137122,22 +94016,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -137145,45 +94038,85 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", }, }, { - "name": "findInContext", - "parameters": [], + "name": "findContent", + "parameters": [ + { + "defaultValue": "{ + renderWithPortal: false + }", + "description": "* renderWithPortal (boolean) - Flag to find the content when the popover is rendered with a portal", + "flags": { + "isOptional": false, + }, + "name": "options", + "typeName": "{ renderWithPortal: boolean; }", + }, + ], "returnType": { - "name": "S3InContextWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "ElementWrapper", }, }, { - "name": "findModal", - "parameters": [], + "name": "findDismissButton", + "parameters": [ + { + "defaultValue": "{ + renderWithPortal: false + }", + "description": "* renderWithPortal (boolean) - Flag to find the dismiss button when the popover is rendered with a portal", + "flags": { + "isOptional": false, + }, + "name": "options", + "typeName": "{ renderWithPortal: boolean; }", + }, + ], "returnType": { - "name": "S3ModalWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "ButtonWrapper", }, }, { - "name": "findTable", + "name": "findHeader", + "parameters": [ + { + "defaultValue": "{ + renderWithPortal: false + }", + "description": "* renderWithPortal (boolean) - Flag to find the header when the popover is rendered with a portal", + "flags": { + "isOptional": false, + }, + "name": "options", + "typeName": "{ renderWithPortal: boolean; }", + }, + ], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findTrigger", "parameters": [], "returnType": { - "name": "TableWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -137193,8 +94126,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -137212,8 +94145,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -137223,12 +94156,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "S3ResourceSelectorWrapper", + "name": "PopoverWrapper", }, { "methods": [ @@ -137247,8 +94180,16 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findAdditionalInfo", + "parameters": [], + "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -137266,12 +94207,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -137291,12 +94231,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -137314,22 +94253,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -137345,12 +94285,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -137368,22 +94308,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -137391,27 +94330,52 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", }, }, { - "name": "findDisabledReason", + "name": "findPercentageText", "parameters": [], "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findResultButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ButtonWrapper", + }, + }, + { + "description": "Returns the result text.", + "name": "findResultText", + "parameters": [ + { + "description": "[optional] Status of the result text. It can be aither "error" or "succes". +If not specified, the method returns the result text that is currently displayed, independently of the result status.", + "flags": { + "isOptional": true, + }, + "name": "status", + "typeName": "string", + }, + ], + "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { @@ -137421,8 +94385,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -137440,8 +94404,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -137451,12 +94415,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "SegmentWrapper", + "name": "ProgressBarWrapper", }, { "methods": [ @@ -137475,8 +94439,17 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "description": "Finds the action button. Note that, despite its typings, this may return null.", + "name": "findActionButton", + "parameters": [], + "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -137494,12 +94467,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -137519,12 +94491,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -137542,22 +94513,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -137573,12 +94545,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -137596,22 +94568,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -137619,62 +94590,50 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", }, }, { - "description": "Finds the segment with the given ID.", - "name": "findSegmentById", - "parameters": [ - { - "description": " -ID of the element to return. -", - "flags": { - "isOptional": false, - }, - "name": "id", - "typeName": "string", - }, - ], + "name": "findCustomPrimaryAction", + "parameters": [], "returnType": { - "name": "SegmentWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "ElementWrapper", }, }, { - "name": "findSegments", + "name": "findNativeTextarea", "parameters": [], "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "ElementWrapper", }, }, { - "name": "findSelectedSegment", + "description": "Finds the secondary actions slot. Note that, despite its typings, this may return null.", + "name": "findSecondaryActions", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findSecondaryContent", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { @@ -137684,8 +94643,8 @@ ID of the element to return. "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -137703,8 +94662,8 @@ ID of the element to return. }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -137714,12 +94673,12 @@ ID of the element to return. "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "SegmentedControlWrapper", + "name": "PromptInputWrapper", }, { "methods": [ @@ -137738,8 +94697,8 @@ ID of the element to return. }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -137757,12 +94716,11 @@ ID of the element to return. }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -137782,12 +94740,11 @@ ID of the element to return. }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -137805,22 +94762,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -137836,12 +94794,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -137859,22 +94817,32 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "inheritedFrom": { + "name": "InputWrapper.findClearButton", + }, + "name": "findClearButton", + "parameters": [], + "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -137882,24 +94850,49 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", }, }, { - "description": "", + "description": "Returns the element containing the \`filteringConstraintText\` slot.", + "name": "findConstraint", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "description": "Returns the element containing the \`customControl\` slot.", + "name": "findCustomControl", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "description": "Returns the element containing the \`customFilterActions\` slot.", + "name": "findCustomFilterActions", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { "inheritedFrom": { - "name": "DropdownHostComponentWrapper.findDropdown", + "name": "AutosuggestWrapper.findDropdown", }, "name": "findDropdown", "parameters": [ @@ -137907,119 +94900,178 @@ Component's wrapper class", "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", "flags": { "isOptional": false, }, "name": "options", + "typeName": "{ expandToViewport: boolean; }", }, ], "returnType": { - "name": "DropdownContentWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "AutosuggestDropdownWrapper", + }, + }, + { + "inheritedFrom": { + "name": "AutosuggestWrapper.findEnteredTextOption", + }, + "name": "findEnteredTextOption", + "parameters": [ + { + "defaultValue": "{ + expandToViewport: false + }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", + "flags": { + "isOptional": false, + }, + "name": "options", + "typeName": "{ expandToViewport: boolean; }", + }, + ], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "", + "inheritedFrom": { + "name": "AutosuggestWrapper.findErrorRecoveryButton", + }, "name": "findErrorRecoveryButton", "parameters": [ { "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", "flags": { "isOptional": false, }, "name": "options", + "typeName": "{ expandToViewport: boolean; }", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "description": "Returns the input that is used for filtering.", - "name": "findFilteringInput", + "inheritedFrom": { + "name": "BaseInputWrapper.findNativeInput", + }, + "name": "findNativeInput", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "description": "Returns custom property form cancel button.", + "name": "findPropertyCancelButton", "parameters": [ { "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", "flags": { "isOptional": false, }, "name": "options", + "typeName": "{ expandToViewport: boolean; }", }, ], "returnType": { - "name": "InputWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "ButtonWrapper", }, }, { - "name": "findInlineLabel", + "description": "Returns custom property form submit button.", + "name": "findPropertySubmitButton", + "parameters": [ + { + "defaultValue": "{ + expandToViewport: false + }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", + "flags": { + "isOptional": false, + }, + "name": "options", + "typeName": "{ expandToViewport: boolean; }", + }, + ], + "returnType": { + "isNullable": false, + "name": "ButtonWrapper", + }, + }, + { + "description": "Returns the button that removes all current tokens.", + "name": "findRemoveAllButton", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "name": "findPlaceholder", + "name": "findResultsCount", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "description": "", + "inheritedFrom": { + "name": "AutosuggestWrapper.findStatusIndicator", + }, "name": "findStatusIndicator", "parameters": [ { "defaultValue": "{ expandToViewport: false }", - "description": " - -* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag. -", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", "flags": { "isOptional": false, }, "name": "options", + "typeName": "{ expandToViewport: boolean; }", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "name": "findTrigger", + "name": "findTokens", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "FilteringTokenWrapper", + }, + ], + }, + }, + { + "description": "Returns the button that toggles if the tokens above \`tokenLimit\` are visible.", + "name": "findTokenToggle", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { @@ -138029,8 +95081,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -138048,8 +95100,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -138059,12 +95111,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "SelectWrapper", + "name": "PropertyFilterWrapper", }, { "methods": [ @@ -138083,8 +95135,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -138102,12 +95154,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -138127,12 +95178,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -138150,22 +95200,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -138181,12 +95232,25 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", + }, + }, + { + "name": "findButtons", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "RadioButtonWrapper", + }, + ], }, }, { @@ -138204,22 +95268,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -138227,121 +95290,33 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findDivider", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findExpandableLinkGroup", - "parameters": [], - "returnType": { - "name": "ExpandableSectionWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "name": "findInfo", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findItemByIndex", + "name": "findInputByValue", "parameters": [ { "flags": { "isOptional": false, }, - "name": "index", - "typeName": "number", + "name": "value", + "typeName": "string", }, ], "returnType": { - "name": "SideNavigationItemWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findItems", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "SideNavigationItemWrapper", - "type": "reference", - }, - ], - }, - }, - { - "name": "findLink", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findSection", - "parameters": [], - "returnType": { - "name": "ExpandableSectionWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findSectionGroup", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findSectionGroupTitle", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findSectionTitle", - "parameters": [], - "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { @@ -138351,8 +95326,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -138370,8 +95345,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -138381,12 +95356,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "SideNavigationItemWrapper", + "name": "RadioGroupWrapper", }, { "methods": [ @@ -138405,17 +95380,16 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { - "name": "findActiveLink", + "name": "findAlertSlot", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { @@ -138433,12 +95407,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -138458,12 +95431,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -138481,22 +95453,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -138512,12 +95485,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -138535,22 +95508,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -138558,79 +95530,41 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", }, }, { - "name": "findHeader", + "name": "findInContext", "parameters": [], "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "S3InContextWrapper", }, }, { - "name": "findHeaderLink", + "name": "findModal", "parameters": [], "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findItemByIndex", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "index", - "typeName": "number", - }, - ], - "returnType": { - "name": "SideNavigationItemWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "S3ModalWrapper", }, }, { - "name": "findItemsControl", + "name": "findTable", "parameters": [], "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findLinkByHref", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "href", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "TableWrapper", }, }, { @@ -138640,8 +95574,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -138659,8 +95593,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -138670,12 +95604,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "SideNavigationWrapper", + "name": "S3ResourceSelectorWrapper", }, { "methods": [ @@ -138694,8 +95628,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -138713,12 +95647,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -138738,12 +95671,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -138761,22 +95693,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -138792,12 +95725,20 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", + }, + }, + { + "name": "findBrowseButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ButtonWrapper", }, }, { @@ -138815,22 +95756,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -138838,27 +95778,41 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", }, }, { - "name": "findNativeInput", + "name": "findUriInput", "parameters": [], "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "InputWrapper", + }, + }, + { + "name": "findVersionsSelect", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "SelectWrapper", + }, + }, + { + "name": "findViewButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ButtonWrapper", }, }, { @@ -138868,8 +95822,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -138887,8 +95841,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -138898,12 +95852,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "SliderWrapper", + "name": "S3InContextWrapper", }, { "methods": [ @@ -138922,8 +95876,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -138941,12 +95895,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -138966,12 +95919,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -138989,22 +95941,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -139020,12 +95973,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -139043,22 +95996,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -139066,18 +96018,69 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", + }, + }, + { + "inheritedFrom": { + "name": "ModalWrapper.findContent", + }, + "name": "findContent", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "inheritedFrom": { + "name": "ModalWrapper.findDismissButton", + }, + "name": "findDismissButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "inheritedFrom": { + "name": "ModalWrapper.findFooter", + }, + "name": "findFooter", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "inheritedFrom": { + "name": "ModalWrapper.findHeader", + }, + "name": "findHeader", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findSubmitButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ButtonWrapper", }, }, { @@ -139087,8 +96090,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -139106,8 +96109,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -139117,12 +96120,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "SpaceBetweenWrapper", + "name": "S3ModalWrapper", }, { "methods": [ @@ -139141,8 +96144,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -139160,12 +96163,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -139185,12 +96187,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -139208,22 +96209,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -139239,12 +96241,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -139262,22 +96264,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -139285,18 +96286,56 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", + }, + }, + { + "description": "Finds the segment with the given ID.", + "name": "findSegmentById", + "parameters": [ + { + "description": "ID of the element to return.", + "flags": { + "isOptional": false, + }, + "name": "id", + "typeName": "string", + }, + ], + "returnType": { + "isNullable": false, + "name": "SegmentWrapper", + }, + }, + { + "name": "findSegments", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], + }, + }, + { + "name": "findSelectedSegment", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -139306,8 +96345,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -139325,8 +96364,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -139336,12 +96375,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "SpinnerWrapper", + "name": "SegmentedControlWrapper", }, { "methods": [ @@ -139360,8 +96399,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -139379,12 +96418,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -139404,12 +96442,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -139427,22 +96464,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -139458,12 +96496,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -139481,31 +96519,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findCloseButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -139513,112 +96541,25 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findHeader", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "name": "findHeaderActions", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findHeaderBefore", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findHeaderDescription", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findHeaderInfo", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findOpenButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns the same panel if it's currently open in bottom position. If not, it returns null. -Use this method to assert the panel position.", - "name": "findOpenPanelBottom", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns the same panel if it's currently open in side position. If not, it returns null. -Use this method to assert the panel position.", - "name": "findOpenPanelSide", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findPreferencesButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findSlider", + "name": "findDisabledReason", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { @@ -139628,8 +96569,8 @@ Use this method to assert the panel position.", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -139647,8 +96588,8 @@ Use this method to assert the panel position.", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -139658,12 +96599,12 @@ Use this method to assert the panel position.", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "SplitPanelWrapper", + "name": "SegmentWrapper", }, { "methods": [ @@ -139682,8 +96623,8 @@ Use this method to assert the panel position.", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -139701,12 +96642,11 @@ Use this method to assert the panel position.", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -139726,12 +96666,11 @@ Use this method to assert the panel position.", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -139749,22 +96688,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -139780,12 +96720,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -139803,22 +96743,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -139826,18 +96765,125 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", + "flags": { + "isOptional": false, + }, + "name": "ComponentClass", + "typeName": "WrapperClass", + }, + ], + "returnType": { + "isNullable": false, + "name": "Wrapper", + }, + }, + { + "inheritedFrom": { + "name": "DropdownHostComponentWrapper.findDropdown", + }, + "name": "findDropdown", + "parameters": [ + { + "defaultValue": "{ + expandToViewport: false + }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", + "flags": { + "isOptional": false, + }, + "name": "options", + "typeName": "{ expandToViewport: boolean; }", + }, + ], + "returnType": { + "isNullable": false, + "name": "DropdownContentWrapper", + }, + }, + { + "name": "findErrorRecoveryButton", + "parameters": [ + { + "defaultValue": "{ + expandToViewport: false + }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", + "flags": { + "isOptional": false, + }, + "name": "options", + "typeName": "{ expandToViewport: boolean; }", + }, + ], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "description": "Returns the input that is used for filtering.", + "name": "findFilteringInput", + "parameters": [ + { + "defaultValue": "{ + expandToViewport: false + }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", + "flags": { + "isOptional": false, + }, + "name": "options", + "typeName": "{ expandToViewport: boolean; }", + }, + ], + "returnType": { + "isNullable": false, + "name": "InputWrapper", + }, + }, + { + "name": "findInlineLabel", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findPlaceholder", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findStatusIndicator", + "parameters": [ + { + "defaultValue": "{ + expandToViewport: false + }", + "description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an \`expandToViewport\` flag.", "flags": { "isOptional": false, }, - "name": "ComponentClass", - "typeName": "WrapperClass", + "name": "options", + "typeName": "{ expandToViewport: boolean; }", }, ], "returnType": { - "name": "Wrapper", - "type": "typeParameter", + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findTrigger", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -139847,8 +96893,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -139866,8 +96912,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -139877,12 +96923,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "StatusIndicatorWrapper", + "name": "SelectWrapper", }, { "methods": [ @@ -139901,8 +96947,16 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findActiveLink", + "parameters": [], + "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -139920,12 +96974,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -139945,12 +96998,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -139968,22 +97020,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -139999,12 +97052,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -140022,22 +97075,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -140045,38 +97097,73 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", }, }, { - "description": "Finds the details of a step", - "name": "findDetails", + "name": "findHeader", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "description": "Finds the header of a step", - "name": "findHeader", + "name": "findHeaderLink", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findItemByIndex", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "index", + "typeName": "number", + }, + ], + "returnType": { + "isNullable": false, + "name": "SideNavigationItemWrapper", + }, + }, + { + "name": "findItemsControl", "parameters": [], "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findLinkByHref", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "href", + "typeName": "string", + }, + ], + "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { @@ -140086,8 +97173,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -140105,8 +97192,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -140116,12 +97203,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "StepWrapper", + "name": "SideNavigationWrapper", }, { "methods": [ @@ -140140,8 +97227,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -140159,12 +97246,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -140184,12 +97270,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -140207,22 +97292,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -140238,12 +97324,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -140261,22 +97347,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -140284,35 +97369,112 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", }, }, { - "description": "Finds all step items", + "name": "findDivider", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findExpandableLinkGroup", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ExpandableSectionWrapper", + }, + }, + { + "name": "findInfo", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findItemByIndex", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "index", + "typeName": "number", + }, + ], + "returnType": { + "isNullable": false, + "name": "SideNavigationItemWrapper", + }, + }, + { "name": "findItems", "parameters": [], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { - "name": "StepWrapper", - "type": "reference", + "name": "SideNavigationItemWrapper", }, ], }, }, + { + "name": "findLink", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findSection", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ExpandableSectionWrapper", + }, + }, + { + "name": "findSectionGroup", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findSectionGroupTitle", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findSectionTitle", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, { "inheritedFrom": { "name": "AbstractWrapper.getElement", @@ -140320,8 +97482,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -140339,8 +97501,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -140350,12 +97512,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "StepsWrapper", + "name": "SideNavigationItemWrapper", }, { "methods": [ @@ -140374,8 +97536,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -140393,12 +97555,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -140418,12 +97579,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -140441,22 +97601,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -140472,52 +97633,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Returns the column that is used for ascending sorting.", - "name": "findAscSortedColumn", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns a table cell based on given row and column indices.", - "name": "findBodyCell", - "parameters": [ - { - "description": " -1-based index of the row of the cell to select.", - "flags": { - "isOptional": false, - }, - "name": "rowIndex", - "typeName": "number", - }, - { - "description": " -1-based index of the column of the cell to select. -", - "flags": { - "isOptional": false, - }, - "name": "columnIndex", - "typeName": "number", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { @@ -140535,83 +97656,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findCollectionPreferences", - "parameters": [], - "returnType": { - "name": "CollectionPreferencesWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findColumnHeaders", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "description": "Returns the element the user clicks when resizing a column.", - "name": "findColumnResizer", - "parameters": [ - { - "description": " -1-based index of the column containing the resizer. -", - "flags": { - "isOptional": false, - }, - "name": "columnIndex", - "typeName": "number", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findColumnSortingArea", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "colIndex", - "typeName": "number", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -140619,289 +97678,25 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", - }, - ], - "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "description": "Returns the column that is used for descending sorting.", - "name": "findDescSortedColumn", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns the button that activates inline editing for a table cell based on given row and column indices.", - "name": "findEditCellButton", - "parameters": [ - { - "description": " -1-based index of the row of the cell to select.", - "flags": { - "isOptional": false, - }, - "name": "rowIndex", - "typeName": "number", - }, - { - "description": " -1-based index of the column of the cell to select. -", - "flags": { - "isOptional": false, - }, - "name": "columnIndex", - "typeName": "number", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findEditingCell", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findEditingCellCancelButton", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findEditingCellSaveButton", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Alias for findEmptySlot method for compatibility with previous versions", - "name": "findEmptyRegion", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findEmptySlot", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns the expandable row toggle button.", - "name": "findExpandToggle", - "parameters": [ - { - "description": " -1-based index of the row. -", - "flags": { - "isOptional": false, - }, - "name": "rowIndex", - "typeName": "number", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findFilterSlot", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findFooterSlot", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Alias for findHeaderSlot method for compatibility with previous versions", - "name": "findHeaderRegion", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findHeaderSlot", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns items loader of the specific item (matched by item's track ID).", - "name": "findItemsLoaderByItemId", - "parameters": [ - { - "description": " -the (expandable) item ID provided with \`trackBy\` property. - -Note: when used with collection-hooks the \`trackBy\` is set automatically from \`expandableRows.getId\`. -", - "flags": { - "isOptional": false, - }, - "name": "itemId", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findLoadingText", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findPagination", - "parameters": [], - "returnType": { - "name": "PaginationWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findPropertyFilter", - "parameters": [], - "returnType": { - "name": "PropertyFilterWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns items loader of the root table level.", - "name": "findRootItemsLoader", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns a row selection area for a given index.", - "name": "findRowSelectionArea", - "parameters": [ - { - "description": " -1-based index of the row selection area to return. -", - "flags": { - "isOptional": false, - }, - "name": "rowIndex", - "typeName": "number", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findRows", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "name": "findSelectAllTrigger", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findSelectedRows", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], + "typeName": "WrapperClass", + }, + ], + "returnType": { + "isNullable": false, + "name": "Wrapper", }, }, { - "name": "findTextFilter", + "name": "findNativeInput", "parameters": [], "returnType": { - "name": "TextFilterWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -140911,8 +97706,8 @@ Note: when used with collection-hooks the \`trackBy\` is set automatically from "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -140930,8 +97725,8 @@ Note: when used with collection-hooks the \`trackBy\` is set automatically from }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -140941,12 +97736,12 @@ Note: when used with collection-hooks the \`trackBy\` is set automatically from "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "TableWrapper", + "name": "SliderWrapper", }, { "methods": [ @@ -140965,8 +97760,8 @@ Note: when used with collection-hooks the \`trackBy\` is set automatically from }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -140984,12 +97779,11 @@ Note: when used with collection-hooks the \`trackBy\` is set automatically from }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -141009,12 +97803,11 @@ Note: when used with collection-hooks the \`trackBy\` is set automatically from }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -141032,22 +97825,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -141063,12 +97857,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -141086,22 +97880,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -141109,27 +97902,17 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findDisabledReason", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { @@ -141139,8 +97922,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -141158,8 +97941,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -141169,12 +97952,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "TabWrapper", + "name": "SpaceBetweenWrapper", }, { "methods": [ @@ -141193,89 +97976,224 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { - "description": "Finds the tab action by using the tab id", - "name": "findActionByTabId", + "inheritedFrom": { + "name": "AbstractWrapper.findAll", + }, + "name": "findAll", "parameters": [ { - "description": " -ID of the clickable element to return -", "flags": { "isOptional": false, }, - "name": "id", + "name": "selector", "typeName": "string", }, ], "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Finds the tab action by using the tab index", - "name": "findActionByTabIndex", + "inheritedFrom": { + "name": "AbstractWrapper.findAllByClassName", + }, + "name": "findAllByClassName", "parameters": [ { - "description": " -1-based index of the clickable element to return -", "flags": { "isOptional": false, }, - "name": "index", - "typeName": "number", + "name": "className", + "typeName": "string", }, ], "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "name": "findActions", - "parameters": [], + "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. +If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", + "inheritedFrom": { + "name": "AbstractWrapper.findAllComponents", + }, + "name": "findAllComponents", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "ComponentClass", + "typeName": "ComponentWrapperClass", + }, + { + "description": "CSS Selector", + "flags": { + "isOptional": true, + }, + "name": "selector", + "typeName": "string", + }, + ], + "returnType": { + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "Wrapper", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.findAny", + }, + "name": "findAny", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "selectors", + "typeName": "Array", + }, + ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "description": "Finds the currently active tab and returns the clickable element from its tab label.", - "name": "findActiveTab", - "parameters": [], + "inheritedFrom": { + "name": "AbstractWrapper.findByClassName", + }, + "name": "findByClassName", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "className", + "typeName": "string", + }, + ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "description": "Finds the tab action for the active tab", - "name": "findActiveTabAction", + "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", + "inheritedFrom": { + "name": "AbstractWrapper.findComponent", + }, + "name": "findComponent", + "parameters": [ + { + "description": "CSS selector", + "flags": { + "isOptional": false, + }, + "name": "selector", + "typeName": "string", + }, + { + "description": "Component's wrapper class", + "flags": { + "isOptional": false, + }, + "name": "ComponentClass", + "typeName": "WrapperClass", + }, + ], + "returnType": { + "isNullable": false, + "name": "Wrapper", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.getElement", + }, + "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, + "name": "string", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.matches", + }, + "name": "matches", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "selector", + "typeName": "string", + }, + ], + "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "description": "Finds the dismissible button for the active tab", - "name": "findActiveTabDismissibleButton", + "inheritedFrom": { + "name": "AbstractWrapper.toSelector", + }, + "name": "toSelector", "parameters": [], "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "string", + }, + }, + ], + "name": "SpinnerWrapper", + }, + { + "methods": [ + { + "inheritedFrom": { + "name": "AbstractWrapper.find", + }, + "name": "find", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "selector", + "typeName": "string", + }, + ], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -141293,12 +98211,11 @@ ID of the clickable element to return }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -141318,12 +98235,11 @@ ID of the clickable element to return }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -141341,22 +98257,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -141372,12 +98289,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -141395,22 +98312,29 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", + }, + }, + { + "name": "findCloseButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ButtonWrapper", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -141418,158 +98342,317 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", }, }, { - "description": "Finds the dismissible button by using the tab id", - "name": "findDismissibleButtonByTabId", + "name": "findHeader", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findHeaderActions", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findHeaderBefore", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findHeaderDescription", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findHeaderInfo", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findOpenButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ButtonWrapper", + }, + }, + { + "description": "Returns the same panel if it's currently open in bottom position. If not, it returns null. +Use this method to assert the panel position.", + "name": "findOpenPanelBottom", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "description": "Returns the same panel if it's currently open in side position. If not, it returns null. +Use this method to assert the panel position.", + "name": "findOpenPanelSide", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findPreferencesButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ButtonWrapper", + }, + }, + { + "name": "findSlider", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.getElement", + }, + "name": "getElement", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "string", + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.matches", + }, + "name": "matches", "parameters": [ { - "description": " -ID of the clickable element to return -", "flags": { "isOptional": false, }, - "name": "id", + "name": "selector", "typeName": "string", }, ], "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Finds the dismissible button by using the tab index.", - "name": "findDismissibleButtonByTabIndex", + "inheritedFrom": { + "name": "AbstractWrapper.toSelector", + }, + "name": "toSelector", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "string", + }, + }, + ], + "name": "SplitPanelWrapper", + }, + { + "methods": [ + { + "inheritedFrom": { + "name": "AbstractWrapper.find", + }, + "name": "find", "parameters": [ { - "description": " -1-based index of the clickable element to return -", "flags": { "isOptional": false, }, - "name": "index", - "typeName": "number", + "name": "selector", + "typeName": "string", }, ], "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Finds the currently focused tab, which might not be active if disabled with a reason.", - "name": "findFocusedTab", - "parameters": [], + "inheritedFrom": { + "name": "AbstractWrapper.findAll", + }, + "name": "findAll", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "selector", + "typeName": "string", + }, + ], "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Finds the currently displayed tab content and returns it.", - "name": "findTabContent", - "parameters": [], + "inheritedFrom": { + "name": "AbstractWrapper.findAllByClassName", + }, + "name": "findAllByClassName", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "className", + "typeName": "string", + }, + ], "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { - "description": "Finds the tab header container at the given position (1-based) and returns the element.", - "name": "findTabHeaderContentByIndex", + "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. +If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", + "inheritedFrom": { + "name": "AbstractWrapper.findAllComponents", + }, + "name": "findAllComponents", "parameters": [ { - "description": " -1-based index of the clickable element to return -", "flags": { "isOptional": false, }, - "name": "index", - "typeName": "number", + "name": "ComponentClass", + "typeName": "ComponentWrapperClass", + }, + { + "description": "CSS Selector", + "flags": { + "isOptional": true, + }, + "name": "selector", + "typeName": "string", + }, + ], + "returnType": { + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "Wrapper", + }, + ], + }, + }, + { + "inheritedFrom": { + "name": "AbstractWrapper.findAny", + }, + "name": "findAny", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "selectors", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "description": "Finds the tab with the given ID and returns the clickable element from its tab label.", - "name": "findTabLinkById", + "inheritedFrom": { + "name": "AbstractWrapper.findByClassName", + }, + "name": "findByClassName", "parameters": [ { - "description": " -ID of the clickable element to return -", "flags": { "isOptional": false, }, - "name": "id", + "name": "className", "typeName": "string", }, ], "returnType": { - "name": "TabWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Finds the tab at the given position (1-based) and returns the clickable element from its tab label.", - "name": "findTabLinkByIndex", + "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", + "inheritedFrom": { + "name": "AbstractWrapper.findComponent", + }, + "name": "findComponent", "parameters": [ { - "description": " -1-based index of the clickable element to return -", + "description": "CSS selector", + "flags": { + "isOptional": false, + }, + "name": "selector", + "typeName": "string", + }, + { + "description": "Component's wrapper class", "flags": { "isOptional": false, }, - "name": "index", - "typeName": "number", + "name": "ComponentClass", + "typeName": "WrapperClass", }, ], "returnType": { - "name": "TabWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Finds all tab headers and returns the clickable elements from their labels.", - "name": "findTabLinks", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "Wrapper", }, }, { @@ -141579,8 +98662,8 @@ ID of the clickable element to return "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -141598,8 +98681,8 @@ ID of the clickable element to return }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -141609,12 +98692,12 @@ ID of the clickable element to return "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "TabsWrapper", + "name": "StatusIndicatorWrapper", }, { "methods": [ @@ -141633,8 +98716,8 @@ ID of the clickable element to return }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -141652,12 +98735,11 @@ ID of the clickable element to return }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -141677,12 +98759,11 @@ ID of the clickable element to return }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -141700,22 +98781,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -141731,12 +98813,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -141754,22 +98836,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -141777,95 +98858,33 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "inheritedFrom": { - "name": "AttributeEditorRowWrapper.findCustomAction", - }, - "name": "findCustomAction", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Returns a field for a given index", - "inheritedFrom": { - "name": "AttributeEditorRowWrapper.findField", - }, - "name": "findField", - "parameters": [ - { - "description": " -1-based column index -", - "flags": { - "isOptional": false, - }, - "name": "column", - "typeName": "number", - }, - ], - "returnType": { - "name": "FormFieldWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "description": "Returns all fields. Fields are supplied in the \`definition\` property of the component.", - "inheritedFrom": { - "name": "AttributeEditorRowWrapper.findFields", - }, - "name": "findFields", + "description": "Finds all step items", + "name": "findItems", "parameters": [], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { - "name": "FormFieldWrapper", - "type": "reference", + "name": "StepWrapper", }, ], }, }, - { - "inheritedFrom": { - "name": "AttributeEditorRowWrapper.findRemoveButton", - }, - "name": "findRemoveButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findUndoButton", - "parameters": [], - "returnType": { - "name": "LinkWrapper", - "type": "reference", - "typeArguments": [], - }, - }, { "inheritedFrom": { "name": "AbstractWrapper.getElement", @@ -141873,8 +98892,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -141892,8 +98911,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -141903,12 +98922,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "TagEditorRowWrapper", + "name": "StepsWrapper", }, { "methods": [ @@ -141927,32 +98946,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AttributeEditorWrapper.findAddButton", - }, - "name": "findAddButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "AttributeEditorWrapper.findAdditionalInfo", - }, - "name": "findAdditionalInfo", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { @@ -141970,12 +98965,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -141995,12 +98989,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -142018,22 +99011,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -142049,12 +99043,47 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", + }, + ], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "description": "Returns the column that is used for ascending sorting.", + "name": "findAscSortedColumn", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "description": "Returns a table cell based on given row and column indices.", + "name": "findBodyCell", + "parameters": [ + { + "description": "1-based index of the row of the cell to select.", + "flags": { + "isOptional": false, + }, + "name": "rowIndex", + "typeName": "number", + }, + { + "description": "1-based index of the column of the cell to select.", + "flags": { + "isOptional": false, + }, + "name": "columnIndex", + "typeName": "number", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -142072,22 +99101,76 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findCollectionPreferences", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "CollectionPreferencesWrapper", + }, + }, + { + "name": "findColumnHeaders", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], + }, + }, + { + "description": "Returns the element the user clicks when resizing a column.", + "name": "findColumnResizer", + "parameters": [ + { + "description": "1-based index of the column containing the resizer.", + "flags": { + "isOptional": false, + }, + "name": "columnIndex", + "typeName": "number", + }, + ], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findColumnSortingArea", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "colIndex", + "typeName": "number", + }, + ], + "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -142095,78 +99178,259 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", }, }, { - "inheritedFrom": { - "name": "AttributeEditorWrapper.findEmptySlot", + "description": "Returns the column that is used for descending sorting.", + "name": "findDescSortedColumn", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "description": "Returns the button that activates inline editing for a table cell based on given row and column indices.", + "name": "findEditCellButton", + "parameters": [ + { + "description": "1-based index of the row of the cell to select.", + "flags": { + "isOptional": false, + }, + "name": "rowIndex", + "typeName": "number", + }, + { + "description": "1-based index of the column of the cell to select.", + "flags": { + "isOptional": false, + }, + "name": "columnIndex", + "typeName": "number", + }, + ], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findEditingCell", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findEditingCellCancelButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findEditingCellSaveButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "description": "Alias for findEmptySlot method for compatibility with previous versions", + "name": "findEmptyRegion", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", }, + }, + { "name": "findEmptySlot", "parameters": [], "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "description": "Returns the expandable row toggle button.", + "name": "findExpandToggle", + "parameters": [ + { + "description": "1-based index of the row.", + "flags": { + "isOptional": false, + }, + "name": "rowIndex", + "typeName": "number", + }, + ], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findFilterSlot", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findFooterSlot", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "description": "Alias for findHeaderSlot method for compatibility with previous versions", + "name": "findHeaderRegion", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findHeaderSlot", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "description": "Returns items loader of the specific item (matched by item's track ID).", + "name": "findItemsLoaderByItemId", + "parameters": [ + { + "description": "the (expandable) item ID provided with \`trackBy\` property. + +Note: when used with collection-hooks the \`trackBy\` is set automatically from \`expandableRows.getId\`.", + "flags": { + "isOptional": false, + }, + "name": "itemId", + "typeName": "string", + }, + ], + "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { "name": "findLoadingText", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "description": "Returns a row for a given index.", - "name": "findRow", + "name": "findPagination", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "PaginationWrapper", + }, + }, + { + "name": "findPropertyFilter", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "PropertyFilterWrapper", + }, + }, + { + "description": "Returns items loader of the root table level.", + "name": "findRootItemsLoader", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findRows", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], + }, + }, + { + "description": "Returns a row selection area for a given index.", + "name": "findRowSelectionArea", "parameters": [ { - "description": " -1-based row index -", + "description": "1-based index of the row selection area to return.", "flags": { "isOptional": false, }, - "name": "row", + "name": "rowIndex", "typeName": "number", }, ], "returnType": { - "name": "TagEditorRowWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns all rows. -To find a specific row use the \`findRow(n)\` function as chaining \`findRows().get(n)\` can return unexpected results.", - "name": "findRows", + "name": "findSelectAllTrigger", "parameters": [], "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findSelectedRows", + "parameters": [], + "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { - "name": "TagEditorRowWrapper", - "type": "reference", + "name": "ElementWrapper", }, ], }, }, + { + "name": "findTextFilter", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "TextFilterWrapper", + }, + }, { "inheritedFrom": { "name": "AbstractWrapper.getElement", @@ -142174,8 +99438,8 @@ To find a specific row use the \`findRow(n)\` function as chaining \`findRows(). "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -142193,8 +99457,8 @@ To find a specific row use the \`findRow(n)\` function as chaining \`findRows(). }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -142204,12 +99468,12 @@ To find a specific row use the \`findRow(n)\` function as chaining \`findRows(). "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "TagEditorWrapper", + "name": "TableWrapper", }, { "methods": [ @@ -142228,8 +99492,79 @@ To find a specific row use the \`findRow(n)\` function as chaining \`findRows(). }, ], "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "description": "Finds the tab action by using the tab id", + "name": "findActionByTabId", + "parameters": [ + { + "description": "ID of the clickable element to return", + "flags": { + "isOptional": false, + }, + "name": "id", + "typeName": "string", + }, + ], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "description": "Finds the tab action by using the tab index", + "name": "findActionByTabIndex", + "parameters": [ + { + "description": "1-based index of the clickable element to return", + "flags": { + "isOptional": false, + }, + "name": "index", + "typeName": "number", + }, + ], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findActions", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "description": "Finds the currently active tab and returns the clickable element from its tab label.", + "name": "findActiveTab", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "description": "Finds the tab action for the active tab", + "name": "findActiveTabAction", + "parameters": [], + "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", + }, + }, + { + "description": "Finds the dismissible button for the active tab", + "name": "findActiveTabDismissibleButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ButtonWrapper", }, }, { @@ -142247,12 +99582,11 @@ To find a specific row use the \`findRow(n)\` function as chaining \`findRows(). }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -142272,12 +99606,11 @@ To find a specific row use the \`findRow(n)\` function as chaining \`findRows(). }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -142295,22 +99628,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -142326,12 +99660,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -142349,22 +99683,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -142372,255 +99705,139 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.getElement", - }, - "name": "getElement", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.matches", - }, - "name": "matches", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "selector", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "inheritedFrom": { - "name": "AbstractWrapper.toSelector", - }, - "name": "toSelector", - "parameters": [], - "returnType": { - "name": "string", - "type": "intrinsic", - }, - }, - ], - "name": "TextContentWrapper", - }, - { - "methods": [ - { - "inheritedFrom": { - "name": "AbstractWrapper.find", - }, - "name": "find", + "description": "Finds the dismissible button by using the tab id", + "name": "findDismissibleButtonByTabId", "parameters": [ { + "description": "ID of the clickable element to return", "flags": { "isOptional": false, }, - "name": "selector", + "name": "id", "typeName": "string", }, ], "returnType": { - "name": "ElementWrapper", - "type": "reference", + "isNullable": false, + "name": "ButtonWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.findAll", - }, - "name": "findAll", + "description": "Finds the dismissible button by using the tab index.", + "name": "findDismissibleButtonByTabIndex", "parameters": [ { + "description": "1-based index of the clickable element to return", "flags": { "isOptional": false, }, - "name": "selector", - "typeName": "string", + "name": "index", + "typeName": "number", }, ], "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "ButtonWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.findAllByClassName", - }, - "name": "findAllByClassName", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "className", - "typeName": "string", - }, - ], + "description": "Finds the currently focused tab, which might not be active if disabled with a reason.", + "name": "findFocusedTab", + "parameters": [], "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns a multi-element wrapper that matches the specified component type with the specified CSS selector. -If no CSS selector is specified, returns a multi-element wrapper that matches the specified component type.", - "inheritedFrom": { - "name": "AbstractWrapper.findAllComponents", - }, - "name": "findAllComponents", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "ComponentWrapperClass", - }, - { - "flags": { - "isOptional": true, - }, - "name": "selector", - }, - ], + "description": "Finds the currently displayed tab content and returns it.", + "name": "findTabContent", + "parameters": [], "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "Wrapper", - "type": "typeParameter", - }, - ], + "isNullable": false, + "name": "ElementWrapper", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.findAny", - }, - "name": "findAny", + "description": "Finds the tab header container at the given position (1-based) and returns the element.", + "name": "findTabHeaderContentByIndex", "parameters": [ { + "description": "1-based index of the clickable element to return", "flags": { "isOptional": false, }, - "name": "selectors", - "typeName": "Array", + "name": "index", + "typeName": "number", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { - "inheritedFrom": { - "name": "AbstractWrapper.findByClassName", - }, - "name": "findByClassName", + "description": "Finds the tab with the given ID and returns the clickable element from its tab label.", + "name": "findTabLinkById", "parameters": [ { + "description": "ID of the clickable element to return", "flags": { "isOptional": false, }, - "name": "className", + "name": "id", "typeName": "string", }, ], "returnType": { - "name": "ElementWrapper", - "type": "reference", + "isNullable": false, + "name": "TabWrapper", }, }, { - "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", - "inheritedFrom": { - "name": "AbstractWrapper.findComponent", - }, - "name": "findComponent", + "description": "Finds the tab at the given position (1-based) and returns the clickable element from its tab label.", + "name": "findTabLinkByIndex", "parameters": [ { - "description": " -CSS selector", + "description": "1-based index of the clickable element to return", "flags": { "isOptional": false, }, - "name": "selector", - "typeName": "string", - }, - { - "description": " -Component's wrapper class", - "flags": { - "isOptional": false, - }, - "name": "ComponentClass", - "typeName": "WrapperClass", + "name": "index", + "typeName": "number", }, ], "returnType": { - "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findInput", - "parameters": [], - "returnType": { - "name": "InputWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "TabWrapper", }, }, { - "name": "findResultsCount", + "description": "Finds all tab headers and returns the clickable elements from their labels.", + "name": "findTabLinks", "parameters": [], "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "ElementWrapper", + }, + ], }, }, { @@ -142630,8 +99847,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -142649,8 +99866,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -142660,12 +99877,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "TextFilterWrapper", + "name": "TabsWrapper", }, { "methods": [ @@ -142684,8 +99901,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -142703,12 +99920,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -142728,12 +99944,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -142751,22 +99966,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -142782,12 +99998,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -142805,22 +100021,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -142828,27 +100043,25 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", }, }, { - "name": "findNativeTextarea", + "name": "findDisabledReason", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { @@ -142858,8 +100071,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -142877,8 +100090,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -142888,12 +100101,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "TextareaWrapper", + "name": "TabWrapper", }, { "methods": [ @@ -142912,8 +100125,30 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "inheritedFrom": { + "name": "AttributeEditorWrapper.findAddButton", + }, + "name": "findAddButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ButtonWrapper", + }, + }, + { + "inheritedFrom": { + "name": "AttributeEditorWrapper.findAdditionalInfo", + }, + "name": "findAdditionalInfo", + "parameters": [], + "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -142931,12 +100166,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -142956,12 +100190,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -142979,22 +100212,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -143010,12 +100244,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -143033,22 +100267,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -143056,64 +100289,68 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", }, }, { - "name": "findInputByValue", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "value", - "typeName": "string", - }, - ], + "inheritedFrom": { + "name": "AttributeEditorWrapper.findEmptySlot", + }, + "name": "findEmptySlot", + "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "name": "findItemByValue", + "name": "findLoadingText", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "description": "Returns a row for a given index.", + "name": "findRow", "parameters": [ { + "description": "1-based row index", "flags": { "isOptional": false, }, - "name": "value", - "typeName": "string", + "name": "row", + "typeName": "number", }, ], "returnType": { - "name": "TileWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "TagEditorRowWrapper", }, }, { - "name": "findItems", + "description": "Returns all rows. + +To find a specific row use the \`findRow(n)\` function as chaining \`findRows().get(n)\` can return unexpected results.", + "name": "findRows", "parameters": [], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { - "name": "TileWrapper", - "type": "reference", + "name": "TagEditorRowWrapper", }, ], }, @@ -143125,8 +100362,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -143144,8 +100381,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -143155,12 +100392,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "TilesWrapper", + "name": "TagEditorWrapper", }, { "methods": [ @@ -143179,8 +100416,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -143198,12 +100435,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -143223,12 +100459,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -143246,22 +100481,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -143277,12 +100513,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -143300,22 +100536,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -143323,54 +100558,85 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", }, }, { - "name": "findDescription", + "inheritedFrom": { + "name": "AttributeEditorRowWrapper.findCustomAction", + }, + "name": "findCustomAction", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "name": "findImage", + "description": "Returns a field for a given index", + "inheritedFrom": { + "name": "AttributeEditorRowWrapper.findField", + }, + "name": "findField", + "parameters": [ + { + "description": "1-based column index", + "flags": { + "isOptional": false, + }, + "name": "column", + "typeName": "number", + }, + ], + "returnType": { + "isNullable": false, + "name": "FormFieldWrapper", + }, + }, + { + "description": "Returns all fields. Fields are supplied in the \`definition\` property of the component.", + "inheritedFrom": { + "name": "AttributeEditorRowWrapper.findFields", + }, + "name": "findFields", "parameters": [], "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "FormFieldWrapper", + }, + ], }, }, { - "name": "findLabel", + "inheritedFrom": { + "name": "AttributeEditorRowWrapper.findRemoveButton", + }, + "name": "findRemoveButton", "parameters": [], "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "ButtonWrapper", }, }, { - "name": "findNativeInput", + "name": "findUndoButton", "parameters": [], "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "LinkWrapper", }, }, { @@ -143380,8 +100646,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -143399,8 +100665,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -143410,12 +100676,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "TileWrapper", + "name": "TagEditorRowWrapper", }, { "methods": [ @@ -143434,8 +100700,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -143453,12 +100719,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -143478,12 +100743,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -143501,22 +100765,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -143532,12 +100797,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -143555,22 +100820,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -143578,30 +100842,17 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "inheritedFrom": { - "name": "BaseInputWrapper.findNativeInput", - }, - "name": "findNativeInput", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { @@ -143611,8 +100862,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -143630,8 +100881,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -143641,12 +100892,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "TimeInputWrapper", + "name": "TextContentWrapper", }, { "methods": [ @@ -143665,8 +100916,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -143684,12 +100935,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -143709,12 +100959,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -143732,22 +100981,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -143763,12 +101013,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -143786,22 +101036,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -143809,54 +101058,33 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "inheritedFrom": { - "name": "ButtonWrapper.findDisabledReason", - }, - "name": "findDisabledReason", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "inheritedFrom": { - "name": "ButtonWrapper.findLoadingIndicator", - }, - "name": "findLoadingIndicator", + "name": "findInput", "parameters": [], "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "InputWrapper", }, }, { - "inheritedFrom": { - "name": "ButtonWrapper.findTextRegion", - }, - "name": "findTextRegion", + "name": "findResultsCount", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { @@ -143866,8 +101094,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -143885,8 +101113,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -143896,12 +101124,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "ToggleButtonWrapper", + "name": "TextFilterWrapper", }, { "methods": [ @@ -143920,8 +101148,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -143939,12 +101167,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -143964,12 +101191,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -143987,22 +101213,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -144018,12 +101245,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -144041,22 +101268,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -144064,45 +101290,25 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", }, }, { - "name": "findDescription", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findLabel", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findNativeInput", + "name": "findNativeTextarea", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { @@ -144112,8 +101318,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -144131,8 +101337,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -144142,12 +101348,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "ToggleWrapper", + "name": "TextareaWrapper", }, { "methods": [ @@ -144166,8 +101372,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -144185,12 +101391,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -144210,12 +101415,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -144233,22 +101437,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -144264,12 +101469,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -144287,22 +101492,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -144310,61 +101514,60 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", }, }, { - "description": "Returns a token from the group for a given index.", - "name": "findToken", + "name": "findInputByValue", "parameters": [ { - "description": " -1-based index of the token to return. -", "flags": { "isOptional": false, }, - "name": "tokenIndex", - "typeName": "number", + "name": "value", + "typeName": "string", }, ], "returnType": { - "name": "TokenWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Returns the token toggle button.", - "name": "findTokenToggle", - "parameters": [], + "name": "findItemByValue", + "parameters": [ + { + "flags": { + "isOptional": false, + }, + "name": "value", + "typeName": "string", + }, + ], "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "TileWrapper", }, }, { - "name": "findTokens", + "name": "findItems", "parameters": [], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { - "name": "TokenWrapper", - "type": "reference", + "name": "TileWrapper", }, ], }, @@ -144376,8 +101579,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -144395,8 +101598,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -144406,12 +101609,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "TokenGroupWrapper", + "name": "TilesWrapper", }, { "methods": [ @@ -144430,8 +101633,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -144449,12 +101652,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -144474,12 +101676,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -144497,22 +101698,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -144528,12 +101730,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -144551,22 +101753,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -144574,45 +101775,28 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", }, }, { - "name": "findDismiss", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], + "inheritedFrom": { + "name": "BaseInputWrapper.findNativeInput", }, - }, - { - "name": "findLabel", + "name": "findNativeInput", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findOption", - "parameters": [], - "returnType": { - "name": "OptionWrapper", - "type": "reference", - "typeArguments": [], }, }, { @@ -144622,8 +101806,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -144641,8 +101825,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -144652,12 +101836,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "TokenWrapper", + "name": "TimeInputWrapper", }, { "methods": [ @@ -144676,8 +101860,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -144695,12 +101879,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -144720,12 +101903,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -144743,22 +101925,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -144774,21 +101957,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findBackButton", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { @@ -144806,22 +101980,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -144829,79 +102002,41 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", }, }, { "name": "findDescription", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "name": "findDismissButton", + "name": "findLabel", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findMenuDropdownItemById", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "id", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "name": "findTitle", + "name": "findNativeInput", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findUtility", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "index", - "typeName": "number", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { @@ -144911,8 +102046,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -144930,8 +102065,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -144941,12 +102076,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "OverflowMenu", + "name": "ToggleWrapper", }, { "methods": [ @@ -144965,8 +102100,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -144984,12 +102119,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -145009,12 +102143,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -145032,22 +102165,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -145063,12 +102197,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -145086,22 +102220,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -145109,175 +102242,50 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findDescription", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "description": "Finds the disabled reason tooltip for a dropdown item. Returns null if no disabled item with \`disabledReason\` is highlighted.", "inheritedFrom": { - "name": "ButtonDropdownWrapper.findDisabledReason", + "name": "ButtonWrapper.findDisabledReason", }, "name": "findDisabledReason", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Finds an expandable category in the open dropdown by category id. Returns null if there is no open dropdown. -This utility does not open the dropdown. To find dropdown items, call \`openDropdown()\` first. -", - "inheritedFrom": { - "name": "ButtonDropdownWrapper.findExpandableCategoryById", - }, - "name": "findExpandableCategoryById", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "id", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Finds the highlighted item in the open dropdown. Returns null if there is no open dropdown. -This utility does not open the dropdown. To find dropdown items, call \`openDropdown()\` first. -", - "inheritedFrom": { - "name": "ButtonDropdownWrapper.findHighlightedItem", - }, - "name": "findHighlightedItem", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Finds an item in the open dropdown by item id. Returns null if there is no open dropdown. -This utility does not open the dropdown. To find dropdown items, call \`openDropdown()\` first. -", - "inheritedFrom": { - "name": "ButtonDropdownWrapper.findItemById", - }, - "name": "findItemById", - "parameters": [ - { - "flags": { - "isOptional": false, - }, - "name": "id", - "typeName": "string", - }, - ], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "description": "Finds all the items in the open dropdown. Returns empty array if there is no open dropdown. -This utility does not open the dropdown. To find dropdown items, call \`openDropdown()\` first. -", "inheritedFrom": { - "name": "ButtonDropdownWrapper.findItems", - }, - "name": "findItems", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], - }, - }, - { - "inheritedFrom": { - "name": "ButtonDropdownWrapper.findMainAction", - }, - "name": "findMainAction", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], + "name": "ButtonWrapper.findLoadingIndicator", }, - }, - { - "name": "findNativeButton", + "name": "findLoadingIndicator", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { "inheritedFrom": { - "name": "ButtonDropdownWrapper.findOpenDropdown", - }, - "name": "findOpenDropdown", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], + "name": "ButtonWrapper.findTextRegion", }, - }, - { - "name": "findTitle", + "name": "findTextRegion", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "inheritedFrom": { - "name": "ButtonDropdownWrapper.findTriggerButton", - }, - "name": "findTriggerButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], }, }, { @@ -145287,8 +102295,8 @@ This utility does not open the dropdown. To find dropdown items, call \`openDrop "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -145306,8 +102314,8 @@ This utility does not open the dropdown. To find dropdown items, call \`openDrop }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -145317,12 +102325,12 @@ This utility does not open the dropdown. To find dropdown items, call \`openDrop "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "TopNavigationMenuDropdownWrapper", + "name": "ToggleButtonWrapper", }, { "methods": [ @@ -145341,8 +102349,8 @@ This utility does not open the dropdown. To find dropdown items, call \`openDrop }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -145360,12 +102368,11 @@ This utility does not open the dropdown. To find dropdown items, call \`openDrop }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -145385,12 +102392,11 @@ This utility does not open the dropdown. To find dropdown items, call \`openDrop }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -145408,22 +102414,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -145439,21 +102446,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findButtonLinkType", - "parameters": [], - "returnType": { - "name": "LinkWrapper", - "type": "reference", - "typeArguments": [], }, }, { @@ -145471,22 +102469,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -145494,36 +102491,57 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", }, }, { - "name": "findMenuDropdownType", + "description": "Returns a token from the group for a given index.", + "name": "findToken", + "parameters": [ + { + "description": "1-based index of the token to return.", + "flags": { + "isOptional": false, + }, + "name": "tokenIndex", + "typeName": "number", + }, + ], + "returnType": { + "isNullable": false, + "name": "TokenWrapper", + }, + }, + { + "name": "findTokens", "parameters": [], "returnType": { - "name": "TopNavigationMenuDropdownWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "TokenWrapper", + }, + ], }, }, { - "name": "findPrimaryButtonType", + "description": "Returns the token toggle button.", + "name": "findTokenToggle", "parameters": [], "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "ElementWrapper", }, }, { @@ -145533,8 +102551,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -145552,8 +102570,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -145563,12 +102581,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "TopNavigationUtilityWrapper", + "name": "TokenGroupWrapper", }, { "methods": [ @@ -145587,8 +102605,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -145606,12 +102624,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -145631,12 +102648,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -145654,22 +102670,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -145685,12 +102702,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -145708,22 +102725,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -145731,93 +102747,84 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", }, }, { "name": "findIdentityLink", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { "name": "findLogo", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { "name": "findOverflowMenu", "parameters": [], "returnType": { + "isNullable": false, "name": "OverflowMenu", - "type": "reference", - "typeArguments": [], }, }, { "name": "findOverflowMenuButton", "parameters": [], "returnType": { + "isNullable": false, "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], }, }, { "name": "findSearch", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { "name": "findSearchButton", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { "name": "findTitle", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { "name": "findUtilities", "parameters": [], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "TopNavigationUtilityWrapper", - "type": "reference", }, ], }, @@ -145834,9 +102841,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "TopNavigationUtilityWrapper", - "type": "reference", - "typeArguments": [], }, }, { @@ -145846,8 +102852,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -145865,8 +102871,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -145876,8 +102882,8 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], @@ -145900,18 +102906,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Finds the actions slot of the tree view item.", - "name": "findActions", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { @@ -145929,12 +102925,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -145954,12 +102949,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -145977,22 +102971,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -146008,12 +103003,20 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", + }, + }, + { + "name": "findButtonLinkType", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "LinkWrapper", }, }, { @@ -146031,79 +103034,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "description": "Finds a visible child item by its ID.", - "name": "findChildItemById", - "parameters": [ - { - "description": " -of the item to find", - "flags": { - "isOptional": false, - }, - "name": "id", - "typeName": "string", - }, - { - "defaultValue": "{}", - "description": " - -* expanded (optional, boolean) - Use it to find the visible expanded or collapsed child item. -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], - "returnType": { - "name": "null | TreeViewItemWrapper", - "type": "union", - }, - }, - { - "description": "Finds all visible child items of the tree view item.", - "name": "findChildItems", - "parameters": [ - { - "defaultValue": "{}", - "description": " - -* expanded (optional, boolean) - Use it to find all visible expanded or collapsed child items. -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, - ], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "TreeViewItemWrapper", - "type": "reference", - }, - ], }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -146111,58 +103056,33 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", }, }, { - "description": "Finds the content slot of the tree view item.", - "name": "findContent", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Finds the icon slot of the tree view item.", - "name": "findIcon", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "description": "Finds the expand toggle of the tree view item.", - "name": "findItemToggle", + "name": "findMenuDropdownType", "parameters": [], "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "TopNavigationMenuDropdownWrapper", }, }, { - "description": "Finds the secondary content slot of the tree view item.", - "name": "findSecondaryContent", + "name": "findPrimaryButtonType", "parameters": [], "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "ButtonWrapper", }, }, { @@ -146172,8 +103092,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -146191,8 +103111,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -146202,12 +103122,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "TreeViewItemWrapper", + "name": "TopNavigationUtilityWrapper", }, { "methods": [ @@ -146226,8 +103146,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -146245,12 +103165,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -146270,12 +103189,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -146293,22 +103211,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -146324,12 +103243,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -146347,22 +103266,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -146370,77 +103288,165 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", }, }, { - "description": "Finds a visible tree view item by its ID.", - "name": "findItemById", + "name": "findDescription", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "description": "Finds the disabled reason tooltip for a dropdown item. Returns null if no disabled item with \`disabledReason\` is highlighted.", + "inheritedFrom": { + "name": "ButtonDropdownWrapper.findDisabledReason", + }, + "name": "findDisabledReason", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "description": "Finds an expandable category in the open dropdown by category id. Returns null if there is no open dropdown. + +This utility does not open the dropdown. To find dropdown items, call \`openDropdown()\` first.", + "inheritedFrom": { + "name": "ButtonDropdownWrapper.findExpandableCategoryById", + }, + "name": "findExpandableCategoryById", "parameters": [ { - "description": " -of the item to find", "flags": { "isOptional": false, }, "name": "id", "typeName": "string", }, - { - "defaultValue": "{}", - "description": " - -* expanded (optiona, boolean) - Use it to find the visible expanded or collapsed item. -", - "flags": { - "isOptional": false, - }, - "name": "options", - }, ], "returnType": { - "name": "null | TreeViewItemWrapper", - "type": "union", + "isNullable": false, + "name": "ElementWrapper", }, }, { - "description": "Finds all visible tree view items.", - "name": "findItems", + "description": "Finds the highlighted item in the open dropdown. Returns null if there is no open dropdown. + +This utility does not open the dropdown. To find dropdown items, call \`openDropdown()\` first.", + "inheritedFrom": { + "name": "ButtonDropdownWrapper.findHighlightedItem", + }, + "name": "findHighlightedItem", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "description": "Finds an item in the open dropdown by item id. Returns null if there is no open dropdown. + +This utility does not open the dropdown. To find dropdown items, call \`openDropdown()\` first.", + "inheritedFrom": { + "name": "ButtonDropdownWrapper.findItemById", + }, + "name": "findItemById", "parameters": [ { - "defaultValue": "{}", - "description": " - -* expanded (optional, boolean) - Use it to find all visible expanded or collapsed items. -", "flags": { "isOptional": false, }, - "name": "options", + "name": "id", + "typeName": "string", }, ], "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "description": "Finds all the items in the open dropdown. Returns empty array if there is no open dropdown. + +This utility does not open the dropdown. To find dropdown items, call \`openDropdown()\` first.", + "inheritedFrom": { + "name": "ButtonDropdownWrapper.findItems", + }, + "name": "findItems", + "parameters": [], + "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { - "name": "TreeViewItemWrapper", - "type": "reference", + "name": "ElementWrapper", }, ], }, }, + { + "inheritedFrom": { + "name": "ButtonDropdownWrapper.findMainAction", + }, + "name": "findMainAction", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ButtonWrapper", + }, + }, + { + "name": "findNativeButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "inheritedFrom": { + "name": "ButtonDropdownWrapper.findOpenDropdown", + }, + "name": "findOpenDropdown", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "name": "findTitle", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "inheritedFrom": { + "name": "ButtonDropdownWrapper.findTriggerButton", + }, + "name": "findTriggerButton", + "parameters": [], + "returnType": { + "isNullable": false, + "name": "ButtonWrapper", + }, + }, { "inheritedFrom": { "name": "AbstractWrapper.getElement", @@ -146448,8 +103454,8 @@ of the item to find", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -146467,8 +103473,8 @@ of the item to find", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -146478,12 +103484,12 @@ of the item to find", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "TreeViewWrapper", + "name": "TopNavigationMenuDropdownWrapper", }, { "methods": [ @@ -146502,8 +103508,8 @@ of the item to find", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -146521,12 +103527,11 @@ of the item to find", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -146546,12 +103551,11 @@ of the item to find", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -146569,22 +103573,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -146600,12 +103605,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -146623,40 +103628,21 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - }, - }, - { - "name": "findCompletionScreenDescription", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findCompletionScreenTitle", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -146664,71 +103650,66 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", - }, - }, - { - "name": "findDismissButton", - "parameters": [], - "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "name": "findDownloadLink", - "parameters": [], - "returnType": { - "name": "LinkWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findFeedbackLink", - "parameters": [], + "description": "Finds a visible tree view item by its ID.", + "name": "findItemById", + "parameters": [ + { + "description": "of the item to find", + "flags": { + "isOptional": false, + }, + "name": "id", + "typeName": "string", + }, + { + "defaultValue": "{}", + "description": "* expanded (optiona, boolean) - Use it to find the visible expanded or collapsed item.", + "flags": { + "isOptional": false, + }, + "name": "options", + "typeName": "{ expanded?: boolean | undefined; }", + }, + ], "returnType": { - "name": "LinkWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": true, + "name": "TreeViewItemWrapper", }, }, { - "name": "findTaskList", - "parameters": [], - "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "TutorialTaskWrapper", - "type": "reference", + "description": "Finds all visible tree view items.", + "name": "findItems", + "parameters": [ + { + "defaultValue": "{}", + "description": "* expanded (optional, boolean) - Use it to find all visible expanded or collapsed items.", + "flags": { + "isOptional": false, }, - ], - }, - }, - { - "name": "findTutorials", - "parameters": [], + "name": "options", + "typeName": "{ expanded?: boolean | undefined; }", + }, + ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { - "name": "TutorialItemWrapper", - "type": "reference", + "name": "TreeViewItemWrapper", }, ], }, @@ -146740,8 +103721,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -146759,8 +103740,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -146770,12 +103751,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "TutorialPanelWrapper", + "name": "TreeViewWrapper", }, { "methods": [ @@ -146794,8 +103775,17 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "description": "Finds the actions slot of the tree view item.", + "name": "findActions", + "parameters": [], + "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -146813,12 +103803,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -146838,12 +103827,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -146861,22 +103849,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -146892,12 +103881,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -146915,22 +103904,72 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", + }, + }, + { + "description": "Finds a visible child item by its ID.", + "name": "findChildItemById", + "parameters": [ + { + "description": "of the item to find", + "flags": { + "isOptional": false, + }, + "name": "id", + "typeName": "string", + }, + { + "defaultValue": "{}", + "description": "* expanded (optional, boolean) - Use it to find the visible expanded or collapsed child item.", + "flags": { + "isOptional": false, + }, + "name": "options", + "typeName": "{ expanded?: boolean | undefined; }", + }, + ], + "returnType": { + "isNullable": true, + "name": "TreeViewItemWrapper", + }, + }, + { + "description": "Finds all visible child items of the tree view item.", + "name": "findChildItems", + "parameters": [ + { + "defaultValue": "{}", + "description": "* expanded (optional, boolean) - Use it to find all visible expanded or collapsed child items.", + "flags": { + "isOptional": false, + }, + "name": "options", + "typeName": "{ expanded?: boolean | undefined; }", + }, + ], + "returnType": { + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "TreeViewItemWrapper", + }, + ], }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -146938,50 +103977,53 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", }, }, { - "name": "findSteps", + "description": "Finds the content slot of the tree view item.", + "name": "findContent", "parameters": [], "returnType": { - "name": "MultiElementWrapper", - "type": "reference", - "typeArguments": [ - { - "name": "ElementWrapper", - "type": "reference", - }, - ], + "isNullable": false, + "name": "ElementWrapper", }, }, { - "name": "findStepsTitle", + "description": "Finds the icon slot of the tree view item.", + "name": "findIcon", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "name": "findTitle", + "description": "Finds the expand toggle of the tree view item.", + "name": "findItemToggle", "parameters": [], "returnType": { + "isNullable": false, + "name": "ElementWrapper", + }, + }, + { + "description": "Finds the secondary content slot of the tree view item.", + "name": "findSecondaryContent", + "parameters": [], + "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { @@ -146991,8 +104033,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -147010,8 +104052,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -147021,12 +104063,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "TutorialTaskWrapper", + "name": "TreeViewItemWrapper", }, { "methods": [ @@ -147045,8 +104087,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -147064,12 +104106,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -147089,12 +104130,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -147112,22 +104152,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -147143,12 +104184,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -147166,40 +104207,37 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { - "name": "findCollapseButton", + "name": "findCompletionScreenDescription", "parameters": [], "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "ElementWrapper", }, }, { - "name": "findCompleted", + "name": "findCompletionScreenTitle", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -147207,72 +104245,67 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", }, }, { - "name": "findDescription", - "parameters": [], - "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], - }, - }, - { - "name": "findExpandButton", + "name": "findDismissButton", "parameters": [], "returnType": { + "isNullable": false, "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "name": "findLearnMoreLink", + "name": "findDownloadLink", "parameters": [], "returnType": { + "isNullable": false, "name": "LinkWrapper", - "type": "reference", - "typeArguments": [], }, }, { - "name": "findPrerequisitesAlert", + "name": "findFeedbackLink", "parameters": [], "returnType": { - "name": "AlertWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "LinkWrapper", }, }, { - "name": "findStartButton", + "name": "findTaskList", "parameters": [], "returnType": { - "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "TutorialTaskWrapper", + }, + ], }, }, { - "name": "findTitle", + "name": "findTutorials", "parameters": [], "returnType": { - "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], + "isNullable": false, + "name": "MultiElementWrapper", + "typeArguments": [ + { + "name": "TutorialItemWrapper", + }, + ], }, }, { @@ -147282,8 +104315,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -147301,8 +104334,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -147312,12 +104345,12 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], - "name": "TutorialItemWrapper", + "name": "TutorialPanelWrapper", }, { "methods": [ @@ -147336,8 +104369,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -147347,9 +104380,8 @@ Component's wrapper class", "name": "findActions", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { @@ -147367,12 +104399,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -147392,12 +104423,11 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -147415,22 +104445,23 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "ComponentClass", - "typeName": "ComponentWrapperClass", + "typeName": "ComponentWrapperClass", }, { + "description": "CSS Selector", "flags": { "isOptional": true, }, "name": "selector", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "Wrapper", - "type": "typeParameter", }, ], }, @@ -147446,12 +104477,12 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th "isOptional": false, }, "name": "selectors", - "typeName": "Array", + "typeName": "Array", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -147469,31 +104500,29 @@ If no CSS selector is specified, returns a multi-element wrapper that matches th }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { "name": "findCancelButton", "parameters": [], "returnType": { + "isNullable": false, "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], }, }, { "description": "Returns a wrapper that matches the specified component type with the specified CSS selector. -Note: This function returns the specified component's wrapper even if the specified selector points to a different component type. -", + +Note: This function returns the specified component's wrapper even if the specified selector points to a different component type.", "inheritedFrom": { "name": "AbstractWrapper.findComponent", }, "name": "findComponent", "parameters": [ { - "description": " -CSS selector", + "description": "CSS selector", "flags": { "isOptional": false, }, @@ -147501,18 +104530,17 @@ CSS selector", "typeName": "string", }, { - "description": " -Component's wrapper class", + "description": "Component's wrapper class", "flags": { "isOptional": false, }, "name": "ComponentClass", - "typeName": "WrapperClass", + "typeName": "WrapperClass", }, ], "returnType": { + "isNullable": false, "name": "Wrapper", - "type": "typeParameter", }, }, { @@ -147522,9 +104550,8 @@ Component's wrapper class", "name": "findContent", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { @@ -147534,27 +104561,24 @@ Component's wrapper class", "name": "findError", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { "name": "findHeader", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { "name": "findInfo", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { @@ -147562,8 +104586,7 @@ Component's wrapper class", "name": "findMenuNavigationLink", "parameters": [ { - "description": " -1-based step index", + "description": "1-based step index", "flags": { "isOptional": false, }, @@ -147571,36 +104594,31 @@ Component's wrapper class", "typeName": "number", }, { - "description": " - - -[optional] State of the link. The method returns null if the specified step does not match the state. It can be + "description": "[optional] State of the link. The method returns null if the specified step does not match the state. It can be - "disabled": for disabled menu entries - "active": for the active menu entry - - undefined: for any entry -", + - undefined: for any entry", "flags": { "isOptional": true, }, "name": "state", + "typeName": "string", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { "name": "findMenuNavigationLinks", "parameters": [], "returnType": { + "isNullable": false, "name": "MultiElementWrapper", - "type": "reference", "typeArguments": [ { "name": "ElementWrapper", - "type": "reference", }, ], }, @@ -147609,36 +104627,32 @@ Component's wrapper class", "name": "findPreviousButton", "parameters": [], "returnType": { + "isNullable": false, "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], }, }, { "name": "findPrimaryButton", "parameters": [], "returnType": { + "isNullable": false, "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], }, }, { "name": "findSecondaryActions", "parameters": [], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", - "typeArguments": [], }, }, { "name": "findSkipToButton", "parameters": [], "returnType": { + "isNullable": false, "name": "ButtonWrapper", - "type": "reference", - "typeArguments": [], }, }, { @@ -147648,8 +104662,8 @@ Component's wrapper class", "name": "getElement", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, { @@ -147667,8 +104681,8 @@ Component's wrapper class", }, ], "returnType": { + "isNullable": false, "name": "ElementWrapper", - "type": "reference", }, }, { @@ -147678,8 +104692,8 @@ Component's wrapper class", "name": "toSelector", "parameters": [], "returnType": { + "isNullable": false, "name": "string", - "type": "intrinsic", }, }, ], diff --git a/src/__tests__/snapshot-tests/documenter.test.ts b/src/__tests__/snapshot-tests/documenter.test.ts index df61514146..283f4c9336 100644 --- a/src/__tests__/snapshot-tests/documenter.test.ts +++ b/src/__tests__/snapshot-tests/documenter.test.ts @@ -1,9 +1,7 @@ // Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 import definitions from '../../../lib/components-definitions/components'; -// @ts-expect-error no typings import testUtilDomDefinitions from '../../../lib/components-definitions/test-utils-doc/dom'; -// @ts-expect-error no typings import testUtilSelectorsDefinitions from '../../../lib/components-definitions/test-utils-doc/selectors'; import { getAllComponents } from '../utils';