kibana/api_docs/kbn_ftr_common_functional_ui_services.devdocs.json

13498 lines
No EOL
561 KiB
JSON
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"id": "@kbn/ftr-common-functional-ui-services",
"client": {
"classes": [],
"functions": [],
"interfaces": [],
"enums": [],
"misc": [],
"objects": []
},
"server": {
"classes": [],
"functions": [],
"interfaces": [],
"enums": [],
"misc": [],
"objects": []
},
"common": {
"classes": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects",
"type": "Class",
"tags": [],
"label": "TestSubjects",
"description": [],
"signature": [
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.TestSubjects",
"text": "TestSubjects"
},
" extends ",
"FtrService"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.log",
"type": "Object",
"tags": [],
"label": "log",
"description": [],
"signature": [
{
"pluginId": "@kbn/tooling-log",
"scope": "common",
"docId": "kibKbnToolingLogPluginApi",
"section": "def-common.ToolingLog",
"text": "ToolingLog"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.retry",
"type": "Object",
"tags": [],
"label": "retry",
"description": [],
"signature": [
{
"pluginId": "@kbn/ftr-common-functional-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalServicesPluginApi",
"section": "def-common.RetryService",
"text": "RetryService"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.findService",
"type": "CompoundType",
"tags": [],
"label": "findService",
"description": [],
"signature": [
{
"pluginId": "@kbn/test",
"scope": "common",
"docId": "kibKbnTestPluginApi",
"section": "def-common.AsyncInstance",
"text": "AsyncInstance"
},
"<",
"FindService",
"> & ",
"FindService"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.config",
"type": "Object",
"tags": [],
"label": "config",
"description": [],
"signature": [
{
"pluginId": "@kbn/test",
"scope": "common",
"docId": "kibKbnTestPluginApi",
"section": "def-common.Config",
"text": "Config"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.FIND_TIME",
"type": "Any",
"tags": [],
"label": "FIND_TIME",
"description": [],
"signature": [
"any"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.TRY_TIME",
"type": "Any",
"tags": [],
"label": "TRY_TIME",
"description": [],
"signature": [
"any"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.WAIT_FOR_EXISTS_TIME",
"type": "Any",
"tags": [],
"label": "WAIT_FOR_EXISTS_TIME",
"description": [],
"signature": [
"any"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.exists",
"type": "Function",
"tags": [],
"label": "exists",
"description": [
"\nGet a promise that resolves with `true` when an element exists, if the element doesn't exist\nyet it will wait until the element does exist. If we wait until the timeout and the element\nstill doesn't exist the promise will resolve with `false`.\n\nThis method is intended to quickly answer the question \"does this testSubject exist\". Its\n2.5 second timeout responds quickly, making it a good candidate for putting inside\n`retry.waitFor()` loops.\n\nWhen `options.timeout` is not passed the `timeouts.waitForExists` config is used as\nthe timeout. The default value for that config is currently 2.5 seconds (in ms).\n\nIf the element is hidden it is not treated as \"existing\", unless `options.allowHidden`\nis set to `true`."
],
"signature": [
"(selector: string, options?: ExistsOptions) => Promise<boolean>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.exists.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.exists.$2",
"type": "Object",
"tags": [],
"label": "options",
"description": [],
"signature": [
"ExistsOptions"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.existOrFail",
"type": "Function",
"tags": [],
"label": "existOrFail",
"description": [
"\nGet a promise that resolves when an element exists, if the element doesn't exist\nbefore the timeout is reached the promise will reject with an error.\n\nThis method is intended to be used as success critieria when something is expected\nto exist. The default 2 minute timeout is not appropriate for all conditions, but\nhard-coding timeouts all over tests is also bad, so please use your best judgement.\n\nThe options are equal to the options accepted by the {@link #exists} method except\nthat `options.timeout` defaults to the `timeouts.try` config, or 2 minutes."
],
"signature": [
"(selector: string, existsOptions?: ExistsOptions | undefined) => Promise<void>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.existOrFail.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.existOrFail.$2",
"type": "Object",
"tags": [],
"label": "existsOptions",
"description": [],
"signature": [
"ExistsOptions | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.missingOrFail",
"type": "Function",
"tags": [],
"label": "missingOrFail",
"description": [
"\nGet a promise that resolves when an element no longer exists, if the element does exist\nit will wait until the element does not exist. If we wait until the timeout and the element\nstill exists the promise will reject.\n\nThis method is intended to quickly assert that an element does not exist. Its\n2.5 second timeout responds quickly.\n\nWhen `options.timeout` is not passed the `timeouts.waitForExists` config is used as\nthe timeout. The default value for that config is currently 2.5 seconds.\n\nIf the element is hidden but still in the DOM it is treated as \"existing\", unless `options.allowHidden`\nis set to `true`."
],
"signature": [
"(selector: string, options?: ExistsOptions) => Promise<void>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.missingOrFail.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.missingOrFail.$2",
"type": "Object",
"tags": [],
"label": "options",
"description": [],
"signature": [
"ExistsOptions"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.stringExistsInCodeBlockOrFail",
"type": "Function",
"tags": [],
"label": "stringExistsInCodeBlockOrFail",
"description": [],
"signature": [
"(codeBlockSelector: string, stringToFind: string) => Promise<void>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.stringExistsInCodeBlockOrFail.$1",
"type": "string",
"tags": [],
"label": "codeBlockSelector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.stringExistsInCodeBlockOrFail.$2",
"type": "string",
"tags": [],
"label": "stringToFind",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.append",
"type": "Function",
"tags": [],
"label": "append",
"description": [],
"signature": [
"(selector: string, text: string) => Promise<void>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.append.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.append.$2",
"type": "string",
"tags": [],
"label": "text",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.clickWhenNotDisabled",
"type": "Function",
"tags": [],
"label": "clickWhenNotDisabled",
"description": [
"\nClicks on the element identified by the testSubject selector. If the retries\nautomatically on \"stale element\" errors unlike clickWhenNotDisabledWithoutRetry.\n`opts.timeout` defaults to the 'timeouts.find' config, which defaults to 10 seconds"
],
"signature": [
"(selector: string, opts?: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.TimeoutOpt",
"text": "TimeoutOpt"
},
" | undefined) => Promise<void>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.clickWhenNotDisabled.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.clickWhenNotDisabled.$2",
"type": "Object",
"tags": [],
"label": "opts",
"description": [],
"signature": [
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.TimeoutOpt",
"text": "TimeoutOpt"
},
" | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.clickWhenNotDisabledWithoutRetry",
"type": "Function",
"tags": [],
"label": "clickWhenNotDisabledWithoutRetry",
"description": [
"\nClicks on the element identified by the testSubject selector. Somewhat surprisingly,\nthis method allows `stale element` errors to propogate, which is why it was renamed\nfrom `clickWhenNotDisabled()` and that method was re-implemented to be more consistent\nwith the rest of the functions in this service.\n\n`opts.timeout` defaults to the 'timeouts.find' config, which defaults to 10 seconds"
],
"signature": [
"(selector: string, opts?: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.TimeoutOpt",
"text": "TimeoutOpt"
},
" | undefined) => Promise<void>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.clickWhenNotDisabledWithoutRetry.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.clickWhenNotDisabledWithoutRetry.$2",
"type": "Object",
"tags": [],
"label": "opts",
"description": [],
"signature": [
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.TimeoutOpt",
"text": "TimeoutOpt"
},
" | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.click",
"type": "Function",
"tags": [],
"label": "click",
"description": [],
"signature": [
"(selector: string, timeout?: number, topOffset?: number | undefined) => Promise<void>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.click.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.click.$2",
"type": "number",
"tags": [],
"label": "timeout",
"description": [],
"signature": [
"number"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.click.$3",
"type": "number",
"tags": [],
"label": "topOffset",
"description": [],
"signature": [
"number | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.pressEnter",
"type": "Function",
"tags": [],
"label": "pressEnter",
"description": [],
"signature": [
"(selector: string, timeout?: number) => Promise<void>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.pressEnter.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.pressEnter.$2",
"type": "number",
"tags": [],
"label": "timeout",
"description": [],
"signature": [
"number"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.doubleClick",
"type": "Function",
"tags": [],
"label": "doubleClick",
"description": [],
"signature": [
"(selector: string, timeout?: number) => Promise<void>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.doubleClick.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.doubleClick.$2",
"type": "number",
"tags": [],
"label": "timeout",
"description": [],
"signature": [
"number"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.descendantExists",
"type": "Function",
"tags": [],
"label": "descendantExists",
"description": [],
"signature": [
"(selector: string, parentElement: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.WebElementWrapper",
"text": "WebElementWrapper"
},
") => Promise<boolean>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.descendantExists.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.descendantExists.$2",
"type": "Object",
"tags": [],
"label": "parentElement",
"description": [],
"signature": [
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.WebElementWrapper",
"text": "WebElementWrapper"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.findDescendant",
"type": "Function",
"tags": [],
"label": "findDescendant",
"description": [],
"signature": [
"(selector: string, parentElement: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.WebElementWrapper",
"text": "WebElementWrapper"
},
") => Promise<",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.WebElementWrapper",
"text": "WebElementWrapper"
},
">"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.findDescendant.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.findDescendant.$2",
"type": "Object",
"tags": [],
"label": "parentElement",
"description": [],
"signature": [
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.WebElementWrapper",
"text": "WebElementWrapper"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.findAllDescendant",
"type": "Function",
"tags": [],
"label": "findAllDescendant",
"description": [],
"signature": [
"(selector: string, parentElement: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.WebElementWrapper",
"text": "WebElementWrapper"
},
") => Promise<",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.WebElementWrapper",
"text": "WebElementWrapper"
},
"[]>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.findAllDescendant.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.findAllDescendant.$2",
"type": "Object",
"tags": [],
"label": "parentElement",
"description": [],
"signature": [
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.WebElementWrapper",
"text": "WebElementWrapper"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.find",
"type": "Function",
"tags": [],
"label": "find",
"description": [],
"signature": [
"(selector: string, timeout?: number) => Promise<",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.WebElementWrapper",
"text": "WebElementWrapper"
},
">"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.find.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.find.$2",
"type": "number",
"tags": [],
"label": "timeout",
"description": [],
"signature": [
"number"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.findAll",
"type": "Function",
"tags": [],
"label": "findAll",
"description": [],
"signature": [
"(selector: string, timeout?: number | undefined) => Promise<",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.WebElementWrapper",
"text": "WebElementWrapper"
},
"[]>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.findAll.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.findAll.$2",
"type": "number",
"tags": [],
"label": "timeout",
"description": [],
"signature": [
"number | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.getAttributeAll",
"type": "Function",
"tags": [],
"label": "getAttributeAll",
"description": [],
"signature": [
"(selector: string, attribute: string) => Promise<string[]>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.getAttributeAll.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.getAttributeAll.$2",
"type": "string",
"tags": [],
"label": "attribute",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.getAttribute",
"type": "Function",
"tags": [],
"label": "getAttribute",
"description": [],
"signature": [
"(selector: string, attribute: string, options?: number | { findTimeout?: number | undefined; tryTimeout?: number | undefined; } | undefined) => Promise<string | null>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.getAttribute.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.getAttribute.$2",
"type": "string",
"tags": [],
"label": "attribute",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.getAttribute.$3",
"type": "CompoundType",
"tags": [],
"label": "options",
"description": [],
"signature": [
"number | { findTimeout?: number | undefined; tryTimeout?: number | undefined; } | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.setValue",
"type": "Function",
"tags": [],
"label": "setValue",
"description": [],
"signature": [
"(selector: string, text: string, options?: SetValueOptions, topOffset?: number | undefined) => Promise<void>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.setValue.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.setValue.$2",
"type": "string",
"tags": [],
"label": "text",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.setValue.$3",
"type": "Object",
"tags": [],
"label": "options",
"description": [],
"signature": [
"SetValueOptions"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.setValue.$4",
"type": "number",
"tags": [],
"label": "topOffset",
"description": [],
"signature": [
"number | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.selectValue",
"type": "Function",
"tags": [],
"label": "selectValue",
"description": [],
"signature": [
"(selector: string, value: string) => Promise<void>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.selectValue.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.selectValue.$2",
"type": "string",
"tags": [],
"label": "value",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.isEnabled",
"type": "Function",
"tags": [],
"label": "isEnabled",
"description": [],
"signature": [
"(selector: string) => Promise<boolean>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.isEnabled.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.isDisplayed",
"type": "Function",
"tags": [],
"label": "isDisplayed",
"description": [],
"signature": [
"(selector: string, timeout?: number | undefined) => Promise<boolean>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.isDisplayed.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.isDisplayed.$2",
"type": "number",
"tags": [],
"label": "timeout",
"description": [],
"signature": [
"number | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.isSelected",
"type": "Function",
"tags": [],
"label": "isSelected",
"description": [],
"signature": [
"(selector: string) => Promise<boolean>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.isSelected.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.isSelectedAll",
"type": "Function",
"tags": [],
"label": "isSelectedAll",
"description": [],
"signature": [
"(selectorAll: string) => Promise<boolean[]>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.isSelectedAll.$1",
"type": "string",
"tags": [],
"label": "selectorAll",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.getVisibleText",
"type": "Function",
"tags": [],
"label": "getVisibleText",
"description": [],
"signature": [
"(selector: string) => Promise<string>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.getVisibleText.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.getVisibleTextAll",
"type": "Function",
"tags": [],
"label": "getVisibleTextAll",
"description": [],
"signature": [
"(selectorAll: string) => Promise<string[]>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.getVisibleTextAll.$1",
"type": "string",
"tags": [],
"label": "selectorAll",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.moveMouseTo",
"type": "Function",
"tags": [],
"label": "moveMouseTo",
"description": [],
"signature": [
"(selector: string) => Promise<void>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.moveMouseTo.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.waitForDeleted",
"type": "Function",
"tags": [],
"label": "waitForDeleted",
"description": [],
"signature": [
"(selectorOrElement: string | ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.WebElementWrapper",
"text": "WebElementWrapper"
},
") => Promise<void>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.waitForDeleted.$1",
"type": "CompoundType",
"tags": [],
"label": "selectorOrElement",
"description": [],
"signature": [
"string | ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.WebElementWrapper",
"text": "WebElementWrapper"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.waitForAttributeToChange",
"type": "Function",
"tags": [],
"label": "waitForAttributeToChange",
"description": [],
"signature": [
"(selector: string, attribute: string, value: string) => Promise<void>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.waitForAttributeToChange.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.waitForAttributeToChange.$2",
"type": "string",
"tags": [],
"label": "attribute",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.waitForAttributeToChange.$3",
"type": "string",
"tags": [],
"label": "value",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.waitForHidden",
"type": "Function",
"tags": [],
"label": "waitForHidden",
"description": [],
"signature": [
"(selector: string, timeout?: number | undefined) => Promise<void>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.waitForHidden.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.waitForHidden.$2",
"type": "number",
"tags": [],
"label": "timeout",
"description": [],
"signature": [
"number | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.waitForEnabled",
"type": "Function",
"tags": [],
"label": "waitForEnabled",
"description": [],
"signature": [
"(selector: string, timeout?: number) => Promise<boolean>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.waitForEnabled.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.waitForEnabled.$2",
"type": "number",
"tags": [],
"label": "timeout",
"description": [],
"signature": [
"number"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.getCssSelector",
"type": "Function",
"tags": [],
"label": "getCssSelector",
"description": [],
"signature": [
"(selector: string) => string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.getCssSelector.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.scrollIntoView",
"type": "Function",
"tags": [],
"label": "scrollIntoView",
"description": [],
"signature": [
"(selector: string, offset?: number | { topOffset?: number | undefined; bottomOffset?: number | undefined; } | undefined) => Promise<void>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.scrollIntoView.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.scrollIntoView.$2",
"type": "CompoundType",
"tags": [],
"label": "offset",
"description": [],
"signature": [
"number | { topOffset?: number | undefined; bottomOffset?: number | undefined; } | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.isChecked",
"type": "Function",
"tags": [],
"label": "isChecked",
"description": [],
"signature": [
"(selector: string) => Promise<boolean>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.isChecked.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.setCheckbox",
"type": "Function",
"tags": [],
"label": "setCheckbox",
"description": [],
"signature": [
"(selector: string, state: \"check\" | \"uncheck\") => Promise<void>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.setCheckbox.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.setCheckbox.$2",
"type": "CompoundType",
"tags": [],
"label": "state",
"description": [],
"signature": [
"\"check\" | \"uncheck\""
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.isEuiSwitchChecked",
"type": "Function",
"tags": [],
"label": "isEuiSwitchChecked",
"description": [],
"signature": [
"(selector: string | ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.WebElementWrapper",
"text": "WebElementWrapper"
},
") => Promise<boolean>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.isEuiSwitchChecked.$1",
"type": "CompoundType",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string | ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.WebElementWrapper",
"text": "WebElementWrapper"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.setEuiSwitch",
"type": "Function",
"tags": [],
"label": "setEuiSwitch",
"description": [],
"signature": [
"(selector: string, state: \"check\" | \"uncheck\") => Promise<void>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.setEuiSwitch.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TestSubjects.setEuiSwitch.$2",
"type": "CompoundType",
"tags": [],
"label": "state",
"description": [],
"signature": [
"\"check\" | \"uncheck\""
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/test_subjects.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
}
],
"initialIsOpen": false
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper",
"type": "Class",
"tags": [],
"label": "WebElementWrapper",
"description": [],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.isChromium",
"type": "boolean",
"tags": [],
"label": "isChromium",
"description": [],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.create",
"type": "Function",
"tags": [],
"label": "create",
"description": [],
"signature": [
"(webElement: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.WebElementWrapper",
"text": "WebElementWrapper"
},
" | ",
"WebElement",
", locator: ",
"By",
" | null, driver: ",
"WebDriver",
", timeout: number, fixedHeaderHeight: number, logger: ",
{
"pluginId": "@kbn/tooling-log",
"scope": "common",
"docId": "kibKbnToolingLogPluginApi",
"section": "def-common.ToolingLog",
"text": "ToolingLog"
},
", browserType: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.Browsers",
"text": "Browsers"
},
") => ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.WebElementWrapper",
"text": "WebElementWrapper"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.create.$1",
"type": "CompoundType",
"tags": [],
"label": "webElement",
"description": [],
"signature": [
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.WebElementWrapper",
"text": "WebElementWrapper"
},
" | ",
"WebElement"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.create.$2",
"type": "CompoundType",
"tags": [],
"label": "locator",
"description": [],
"signature": [
"By",
" | null"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.create.$3",
"type": "Object",
"tags": [],
"label": "driver",
"description": [],
"signature": [
"WebDriver"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.create.$4",
"type": "number",
"tags": [],
"label": "timeout",
"description": [],
"signature": [
"number"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.create.$5",
"type": "number",
"tags": [],
"label": "fixedHeaderHeight",
"description": [],
"signature": [
"number"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.create.$6",
"type": "Object",
"tags": [],
"label": "logger",
"description": [],
"signature": [
{
"pluginId": "@kbn/tooling-log",
"scope": "common",
"docId": "kibKbnToolingLogPluginApi",
"section": "def-common.ToolingLog",
"text": "ToolingLog"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.create.$7",
"type": "Enum",
"tags": [],
"label": "browserType",
"description": [],
"signature": [
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.Browsers",
"text": "Browsers"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.Unnamed",
"type": "Function",
"tags": [],
"label": "Constructor",
"description": [],
"signature": [
"any"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.Unnamed.$1",
"type": "Object",
"tags": [],
"label": "_webElement",
"description": [],
"signature": [
"WebElement"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.Unnamed.$2",
"type": "CompoundType",
"tags": [],
"label": "locator",
"description": [],
"signature": [
"By",
" | null"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.Unnamed.$3",
"type": "Object",
"tags": [],
"label": "driver",
"description": [],
"signature": [
"WebDriver"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.Unnamed.$4",
"type": "number",
"tags": [],
"label": "timeout",
"description": [],
"signature": [
"number"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.Unnamed.$5",
"type": "number",
"tags": [],
"label": "fixedHeaderHeight",
"description": [],
"signature": [
"number"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.Unnamed.$6",
"type": "Object",
"tags": [],
"label": "logger",
"description": [],
"signature": [
{
"pluginId": "@kbn/tooling-log",
"scope": "common",
"docId": "kibKbnToolingLogPluginApi",
"section": "def-common.ToolingLog",
"text": "ToolingLog"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.Unnamed.$7",
"type": "Enum",
"tags": [],
"label": "browserType",
"description": [],
"signature": [
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.Browsers",
"text": "Browsers"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.isDisplayed",
"type": "Function",
"tags": [
"return"
],
"label": "isDisplayed",
"description": [
"\nReturns whether or not the element would be visible to an actual user. This means\nthat the following types of elements are considered to be not displayed:\n\n - Elements with display: none\n - Elements with visibility: hidden\n - Elements positioned outside of the viewport that cannot be scrolled into view\n - Elements with opacity: 0\n - Elements with no offsetWidth or offsetHeight\n\nhttps://seleniumhq.github.io/selenium/docs/api/javascript/module/selenium-webdriver/lib/webdriver_exports_WebElement.html#isDisplayed\n"
],
"signature": [
"() => Promise<boolean>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"children": [],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.isEnabled",
"type": "Function",
"tags": [
"return"
],
"label": "isEnabled",
"description": [
"\nTests whether this element is enabled, as dictated by the disabled attribute.\nhttps://seleniumhq.github.io/selenium/docs/api/javascript/module/selenium-webdriver/lib/webdriver_exports_WebElement.html#isEnabled\n"
],
"signature": [
"() => Promise<boolean>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"children": [],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.isSelected",
"type": "Function",
"tags": [
"return"
],
"label": "isSelected",
"description": [
"\nTests whether this element is selected.\nhttps://seleniumhq.github.io/selenium/docs/api/javascript/module/selenium-webdriver/lib/webdriver_exports_WebElement.html#isSelected\n"
],
"signature": [
"() => Promise<boolean>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"children": [],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.click",
"type": "Function",
"tags": [
"return"
],
"label": "click",
"description": [
"\nClicks on this element.\nhttps://seleniumhq.github.io/selenium/docs/api/javascript/module/selenium-webdriver/lib/webdriver_exports_WebElement.html#click\n"
],
"signature": [
"(topOffset?: number | undefined) => Promise<void>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.click.$1",
"type": "number",
"tags": [],
"label": "topOffset",
"description": [],
"signature": [
"number | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.focus",
"type": "Function",
"tags": [
"return"
],
"label": "focus",
"description": [
"\nFocuses this element.\n"
],
"signature": [
"() => Promise<void>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"children": [],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.openHref",
"type": "Function",
"tags": [
"return"
],
"label": "openHref",
"description": [
"\nIf possible, opens 'href' of this element directly through the URL\n"
],
"signature": [
"() => Promise<void>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"children": [],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.elementHasClass",
"type": "Function",
"tags": [
"return"
],
"label": "elementHasClass",
"description": [
"\nCheck if webelement wrapper has a specific class.\n"
],
"signature": [
"(className: string) => Promise<boolean>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.elementHasClass.$1",
"type": "string",
"tags": [],
"label": "className",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.clearValue",
"type": "Function",
"tags": [
"default"
],
"label": "clearValue",
"description": [
"\nClear the value of this element. This command has no effect if the underlying DOM element\nis neither a text INPUT element nor a TEXTAREA element.\nhttps://seleniumhq.github.io/selenium/docs/api/javascript/module/selenium-webdriver/lib/webdriver_exports_WebElement.html#clear\n"
],
"signature": [
"(options?: ClearOptions) => Promise<void>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.clearValue.$1",
"type": "Object",
"tags": [],
"label": "options",
"description": [
"option to clear input with JS: `arguments[0].value=''`"
],
"signature": [
"ClearOptions"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.clearValueWithKeyboard",
"type": "Function",
"tags": [
"default"
],
"label": "clearValueWithKeyboard",
"description": [
"\nClear the value of this element using Keyboard"
],
"signature": [
"(options?: TypeOptions) => Promise<void>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.clearValueWithKeyboard.$1",
"type": "Object",
"tags": [],
"label": "options",
"description": [
"to input characters one by one"
],
"signature": [
"TypeOptions"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.selectValueWithKeyboard",
"type": "Function",
"tags": [],
"label": "selectValueWithKeyboard",
"description": [],
"signature": [
"() => Promise<void>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"children": [],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.type",
"type": "Function",
"tags": [
"return"
],
"label": "type",
"description": [
"\nTypes a key sequence on the DOM element represented by this instance. Modifier keys\n(SHIFT, CONTROL, ALT, META) are stateful; once a modifier is processed in the key sequence,\nthat key state is toggled until one of the following occurs:\n\nThe modifier key is encountered again in the sequence. At this point the state of the key is\ntoggled (along with the appropriate keyup/down events).\nThe input.Key.NULL key is encountered in the sequence. When this key is encountered, all\nmodifier keys current in the down state are released (with accompanying keyup events). The NULL\nkey can be used to simulate common keyboard shortcuts.\nhttps://seleniumhq.github.io/selenium/docs/api/javascript/module/selenium-webdriver/lib/webdriver_exports_WebElement.html#sendKeys\n"
],
"signature": [
"(value: string | string[], options?: TypeOptions) => Promise<void>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.type.$1",
"type": "CompoundType",
"tags": [],
"label": "value",
"description": [],
"signature": [
"string | string[]"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.type.$2",
"type": "Object",
"tags": [],
"label": "options",
"description": [],
"signature": [
"TypeOptions"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.pressKeys",
"type": "Function",
"tags": [],
"label": "pressKeys",
"description": [],
"signature": [
"{ <T extends ",
"IKey",
">(keys: T | T[]): Promise<void>; <T extends string>(keys: T | T[]): Promise<void>; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.pressKeys.$1",
"type": "string",
"tags": [],
"label": "keys",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.getAttribute",
"type": "Function",
"tags": [
"return"
],
"label": "getAttribute",
"description": [
"\nRetrieves the current value of the given attribute of this element. Will return the current\nvalue, even if it has been modified after the page has been loaded. More exactly, this method\nwill return the value of the given attribute, unless that attribute is not present, in which\ncase the value of the property with the same name is returned. If neither value is set, null\nis returned (for example, the \"value\" property of a textarea element). The \"style\" attribute\nis converted as best can be to a text representation with a trailing semi-colon.\nhttps://seleniumhq.github.io/selenium/docs/api/javascript/module/selenium-webdriver/lib/webdriver_exports_WebElement.html#getAttribute\n"
],
"signature": [
"(name: string) => Promise<string | null>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.getAttribute.$1",
"type": "string",
"tags": [],
"label": "name",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.getComputedStyle",
"type": "Function",
"tags": [
"return"
],
"label": "getComputedStyle",
"description": [
"\nRetrieves the value of a computed style property for this instance. If the element inherits\nthe named style from its parent, the parent will be queried for its value. Where possible,\ncolor values will be converted to their hex representation (e.g. #00ff00 instead of rgb(0, 255, 0)).\nhttps://seleniumhq.github.io/selenium/docs/api/javascript/module/selenium-webdriver/lib/webdriver_exports_WebElement.html#getCssValue\n"
],
"signature": [
"(propertyName: string) => Promise<string>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.getComputedStyle.$1",
"type": "string",
"tags": [],
"label": "propertyName",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.getVisibleText",
"type": "Function",
"tags": [
"return"
],
"label": "getVisibleText",
"description": [
"\nGet the visible (i.e. not hidden by CSS) innerText of this element, including sub-elements,\nwithout any leading or trailing whitespace.\nhttps://seleniumhq.github.io/selenium/docs/api/javascript/module/selenium-webdriver/lib/webdriver_exports_WebElement.html#getText\n"
],
"signature": [
"() => Promise<string>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"children": [],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.getTagName",
"type": "Function",
"tags": [],
"label": "getTagName",
"description": [],
"signature": [
"{ <T extends keyof HTMLElementTagNameMap>(): Promise<T>; <T extends string>(): Promise<T>; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"children": [],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.getPosition",
"type": "Function",
"tags": [
"return"
],
"label": "getPosition",
"description": [
"\nReturns an object describing an element's location, in pixels relative to the document element,\nand the element's size in pixels.\nhttps://seleniumhq.github.io/selenium/docs/api/javascript/module/selenium-webdriver/lib/webdriver_exports_WebElement.html#getRect\n"
],
"signature": [
"() => Promise<{ height: number; width: number; x: number; y: number; }>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"children": [],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.getSize",
"type": "Function",
"tags": [
"return"
],
"label": "getSize",
"description": [
"\nReturns an object describing an element's location, in pixels relative to the document element,\nand the element's size in pixels.\nhttps://seleniumhq.github.io/selenium/docs/api/javascript/module/selenium-webdriver/lib/webdriver_exports_WebElement.html#getRect\n"
],
"signature": [
"() => Promise<{ height: number; width: number; x: number; y: number; }>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"children": [],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.moveMouseTo",
"type": "Function",
"tags": [
"return"
],
"label": "moveMouseTo",
"description": [
"\nMoves the remote environments mouse cursor to the current element with optional offset\nhttps://seleniumhq.github.io/selenium/docs/api/javascript/module/selenium-webdriver/lib/input_exports_Actions.html#move"
],
"signature": [
"({ xOffset, yOffset, topOffset }?: { xOffset?: number | undefined; yOffset?: number | undefined; topOffset?: number | undefined; }) => Promise<void>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.moveMouseTo.$1",
"type": "Object",
"tags": [],
"label": "{ xOffset = 0, yOffset = 0, topOffset = 0 }",
"description": [],
"signature": [
"{ xOffset?: number | undefined; yOffset?: number | undefined; topOffset?: number | undefined; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.clickMouseButton",
"type": "Function",
"tags": [
"return"
],
"label": "clickMouseButton",
"description": [
"\nInserts an action for moving the mouse to element center, unless optional offset is provided.\nThen adds an action for left-click (down/up) with the mouse.\nhttps://seleniumhq.github.io/selenium/docs/api/javascript/module/selenium-webdriver/lib/input_exports_Actions.html#click\n"
],
"signature": [
"(options?: { xOffset: number; yOffset: number; }) => Promise<void>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.clickMouseButton.$1",
"type": "Object",
"tags": [],
"label": "options",
"description": [],
"signature": [
"{ xOffset: number; yOffset: number; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.doubleClick",
"type": "Function",
"tags": [
"return"
],
"label": "doubleClick",
"description": [
"\nInserts action for performing a double left-click with the mouse.\nhttps://seleniumhq.github.io/selenium/docs/api/javascript/module/selenium-webdriver/lib/input_exports_Actions.html#doubleClick"
],
"signature": [
"() => Promise<void>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"children": [],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.findByCssSelector",
"type": "Function",
"tags": [
"return"
],
"label": "findByCssSelector",
"description": [
"\nGets the first element inside this element matching the given CSS selector.\nhttps://seleniumhq.github.io/selenium/docs/api/javascript/module/selenium-webdriver/lib/webdriver_exports_WebElement.html#findElement\n"
],
"signature": [
"(selector: string) => Promise<",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.WebElementWrapper",
"text": "WebElementWrapper"
},
">"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.findByCssSelector.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.findAllByCssSelector",
"type": "Function",
"tags": [
"return"
],
"label": "findAllByCssSelector",
"description": [
"\nGets all elements inside this element matching the given CSS selector.\nhttps://seleniumhq.github.io/selenium/docs/api/javascript/module/selenium-webdriver/lib/webdriver_exports_WebElement.html#findElement\n"
],
"signature": [
"(selector: string, timeout?: number | undefined) => Promise<",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.WebElementWrapper",
"text": "WebElementWrapper"
},
"[]>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.findAllByCssSelector.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.findAllByCssSelector.$2",
"type": "number",
"tags": [],
"label": "timeout",
"description": [],
"signature": [
"number | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.findByTestSubject",
"type": "Function",
"tags": [
"return"
],
"label": "findByTestSubject",
"description": [
"\nGets the first element inside this element matching the given data-test-subj selector.\n"
],
"signature": [
"(selector: string) => Promise<",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.WebElementWrapper",
"text": "WebElementWrapper"
},
">"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.findByTestSubject.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.findAllByTestSubject",
"type": "Function",
"tags": [
"return"
],
"label": "findAllByTestSubject",
"description": [
"\nGets all elements inside this element matching the given data-test-subj selector.\n"
],
"signature": [
"(selector: string, timeout?: number | undefined) => Promise<",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.WebElementWrapper",
"text": "WebElementWrapper"
},
"[]>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.findAllByTestSubject.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.findAllByTestSubject.$2",
"type": "number",
"tags": [],
"label": "timeout",
"description": [],
"signature": [
"number | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.findByClassName",
"type": "Function",
"tags": [
"return"
],
"label": "findByClassName",
"description": [
"\nGets the first element inside this element matching the given CSS class name.\nhttps://seleniumhq.github.io/selenium/docs/api/javascript/module/selenium-webdriver/lib/webdriver_exports_WebElement.html#findElement\n"
],
"signature": [
"(className: string) => Promise<",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.WebElementWrapper",
"text": "WebElementWrapper"
},
">"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.findByClassName.$1",
"type": "string",
"tags": [],
"label": "className",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.findAllByClassName",
"type": "Function",
"tags": [
"return"
],
"label": "findAllByClassName",
"description": [
"\nGets all elements inside this element matching the given CSS class name.\nhttps://seleniumhq.github.io/selenium/docs/api/javascript/module/selenium-webdriver/lib/webdriver_exports_WebElement.html#findElement\n"
],
"signature": [
"(className: string, timeout?: number | undefined) => Promise<",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.WebElementWrapper",
"text": "WebElementWrapper"
},
"[]>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.findAllByClassName.$1",
"type": "string",
"tags": [],
"label": "className",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.findAllByClassName.$2",
"type": "number",
"tags": [],
"label": "timeout",
"description": [],
"signature": [
"number | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.findByTagName",
"type": "Function",
"tags": [],
"label": "findByTagName",
"description": [],
"signature": [
"{ <T extends keyof HTMLElementTagNameMap>(tagName: T): Promise<",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.WebElementWrapper",
"text": "WebElementWrapper"
},
">; <T extends string>(tagName: T): Promise<",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.WebElementWrapper",
"text": "WebElementWrapper"
},
">; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.findByTagName.$1",
"type": "string",
"tags": [],
"label": "tagName",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.findAllByTagName",
"type": "Function",
"tags": [],
"label": "findAllByTagName",
"description": [],
"signature": [
"{ <T extends keyof HTMLElementTagNameMap>(tagName: T, timeout?: number | undefined): Promise<",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.WebElementWrapper",
"text": "WebElementWrapper"
},
"[]>; <T extends string>(tagName: T, timeout?: number | undefined): Promise<",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.WebElementWrapper",
"text": "WebElementWrapper"
},
"[]>; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.findAllByTagName.$1",
"type": "string",
"tags": [],
"label": "tagName",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.findAllByTagName.$2",
"type": "number",
"tags": [],
"label": "timeout",
"description": [],
"signature": [
"number | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.findByXpath",
"type": "Function",
"tags": [
"return"
],
"label": "findByXpath",
"description": [
"\nGets the first element inside this element matching the given XPath selector.\nhttps://seleniumhq.github.io/selenium/docs/api/javascript/module/selenium-webdriver/lib/webdriver_exports_WebElement.html#findElement\n"
],
"signature": [
"(selector: string) => Promise<",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.WebElementWrapper",
"text": "WebElementWrapper"
},
">"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.findByXpath.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.findAllByXpath",
"type": "Function",
"tags": [
"return"
],
"label": "findAllByXpath",
"description": [
"\nGets all elements inside this element matching the given XPath selector.\nhttps://seleniumhq.github.io/selenium/docs/api/javascript/module/selenium-webdriver/lib/webdriver_exports_WebElement.html#findElement\n"
],
"signature": [
"(selector: string, timeout?: number | undefined) => Promise<",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.WebElementWrapper",
"text": "WebElementWrapper"
},
"[]>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.findAllByXpath.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.findAllByXpath.$2",
"type": "number",
"tags": [],
"label": "timeout",
"description": [],
"signature": [
"number | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.findByPartialLinkText",
"type": "Function",
"tags": [
"return"
],
"label": "findByPartialLinkText",
"description": [
"\nGets the first element inside this element matching the given partial link text.\nhttps://seleniumhq.github.io/selenium/docs/api/javascript/module/selenium-webdriver/lib/webdriver_exports_WebElement.html#findElement\n"
],
"signature": [
"(linkText: string) => Promise<",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.WebElementWrapper",
"text": "WebElementWrapper"
},
">"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.findByPartialLinkText.$1",
"type": "string",
"tags": [],
"label": "linkText",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.findAllByPartialLinkText",
"type": "Function",
"tags": [
"return"
],
"label": "findAllByPartialLinkText",
"description": [
"\nGets all elements inside this element matching the given partial link text.\nhttps://seleniumhq.github.io/selenium/docs/api/javascript/module/selenium-webdriver/lib/webdriver_exports_WebElement.html#findElement\n"
],
"signature": [
"(linkText: string, timeout?: number | undefined) => Promise<",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.WebElementWrapper",
"text": "WebElementWrapper"
},
"[]>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.findAllByPartialLinkText.$1",
"type": "string",
"tags": [],
"label": "linkText",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.findAllByPartialLinkText.$2",
"type": "number",
"tags": [],
"label": "timeout",
"description": [],
"signature": [
"number | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.waitForDeletedByCssSelector",
"type": "Function",
"tags": [
"return"
],
"label": "waitForDeletedByCssSelector",
"description": [
"\nWaits for all elements inside this element matching the given CSS selector to be destroyed.\n"
],
"signature": [
"(selector: string, implicitTimeout?: number) => Promise<void>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.waitForDeletedByCssSelector.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.waitForDeletedByCssSelector.$2",
"type": "number",
"tags": [],
"label": "implicitTimeout",
"description": [],
"signature": [
"number"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.scrollIntoView",
"type": "Function",
"tags": [
"return"
],
"label": "scrollIntoView",
"description": [
"\nScroll the element into view\n"
],
"signature": [
"(scrollIntoViewOptions?: ScrollIntoViewOptions | undefined) => Promise<void>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.scrollIntoView.$1",
"type": "Object",
"tags": [],
"label": "scrollIntoViewOptions",
"description": [],
"signature": [
"ScrollIntoViewOptions | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.scrollIntoViewIfNecessary",
"type": "Function",
"tags": [
"nonstandard",
"return"
],
"label": "scrollIntoViewIfNecessary",
"description": [
"\nScroll the element into view if it is not already, avoiding the fixed header if necessary\nThis method is a variation of the scrollIntoView method, where we only scroll into an element\nif it is not part of the \"scrollable view\".\nThis implies a specific behavior, since the \"scrollable view\" of the view is identified by\nthe `document.scrollingElement`, which always results to the html or body tag.\n\nUse cases:\n- An element (a section, a footer) is not visible in the whole page and we need to scroll into it.\n- An element is covered by the fixed header and we need to scroll into it ensuring is not covered.\n\nIn case you have a scrollable list smaller that the size of the HTML document and you need\nto scroll into an element of that list, prefer using the `.scrollIntoView` method.\n"
],
"signature": [
"(topOffsetOrOptions?: number | { topOffset?: number | undefined; bottomOffset?: number | undefined; } | undefined) => Promise<void>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.scrollIntoViewIfNecessary.$1",
"type": "CompoundType",
"tags": [],
"label": "topOffsetOrOptions",
"description": [],
"signature": [
"number | { topOffset?: number | undefined; bottomOffset?: number | undefined; } | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.parseDomContent",
"type": "Function",
"tags": [
"nonstandard",
"return"
],
"label": "parseDomContent",
"description": [
"\nGets element innerHTML and wrap it up with cheerio\n"
],
"signature": [
"() => Promise<",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerioStatic",
"text": "CustomCheerioStatic"
},
">"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"children": [],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.WebElementWrapper.takeScreenshot",
"type": "Function",
"tags": [],
"label": "takeScreenshot",
"description": [
"\nCreates the screenshot of the element\n"
],
"signature": [
"() => Promise<Buffer>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/web_element_wrapper.ts",
"deprecated": false,
"trackAdoption": false,
"children": [],
"returnComment": []
}
],
"initialIsOpen": false
}
],
"functions": [],
"interfaces": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio",
"type": "Interface",
"tags": [],
"label": "CustomCheerio",
"description": [],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.Unnamed",
"type": "IndexSignature",
"tags": [],
"label": "[index: number]: Element",
"description": [],
"signature": [
"[index: number]: cheerio.Element"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.length",
"type": "number",
"tags": [],
"label": "length",
"description": [],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.attr",
"type": "Function",
"tags": [],
"label": "attr",
"description": [],
"signature": [
"{ (): { [attr: string]: string; }; (name: string): string; (name: string, value: any): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.attr",
"type": "Function",
"tags": [],
"label": "attr",
"description": [],
"signature": [
"{ (): { [attr: string]: string; }; (name: string): string; (name: string, value: any): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.attr.$1",
"type": "string",
"tags": [],
"label": "name",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.attr",
"type": "Function",
"tags": [],
"label": "attr",
"description": [],
"signature": [
"{ (): { [attr: string]: string; }; (name: string): string; (name: string, value: any): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.attr.$1",
"type": "string",
"tags": [],
"label": "name",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.attr.$2",
"type": "Any",
"tags": [],
"label": "value",
"description": [],
"signature": [
"any"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.data",
"type": "Function",
"tags": [],
"label": "data",
"description": [],
"signature": [
"{ (): any; (name: string): any; (name: string, value: any): any; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.data",
"type": "Function",
"tags": [],
"label": "data",
"description": [],
"signature": [
"{ (): any; (name: string): any; (name: string, value: any): any; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.data.$1",
"type": "string",
"tags": [],
"label": "name",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.data",
"type": "Function",
"tags": [],
"label": "data",
"description": [],
"signature": [
"{ (): any; (name: string): any; (name: string, value: any): any; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.data.$1",
"type": "string",
"tags": [],
"label": "name",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.data.$2",
"type": "Any",
"tags": [],
"label": "value",
"description": [],
"signature": [
"any"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.val",
"type": "Function",
"tags": [],
"label": "val",
"description": [],
"signature": [
"{ (): string; (value: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.val",
"type": "Function",
"tags": [],
"label": "val",
"description": [],
"signature": [
"{ (): string; (value: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.val.$1",
"type": "string",
"tags": [],
"label": "value",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.removeAttr",
"type": "Function",
"tags": [],
"label": "removeAttr",
"description": [],
"signature": [
"(name: string) => ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.removeAttr.$1",
"type": "string",
"tags": [],
"label": "name",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.has",
"type": "Function",
"tags": [],
"label": "has",
"description": [],
"signature": [
"{ (selector: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (element: cheerio.Element): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.has.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.has",
"type": "Function",
"tags": [],
"label": "has",
"description": [],
"signature": [
"{ (selector: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (element: cheerio.Element): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.has.$1",
"type": "CompoundType",
"tags": [],
"label": "element",
"description": [],
"signature": [
"cheerio.Element"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.hasClass",
"type": "Function",
"tags": [],
"label": "hasClass",
"description": [],
"signature": [
"(className: string) => boolean"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.hasClass.$1",
"type": "string",
"tags": [],
"label": "className",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.addClass",
"type": "Function",
"tags": [],
"label": "addClass",
"description": [],
"signature": [
"(classNames: string) => ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.addClass.$1",
"type": "string",
"tags": [],
"label": "classNames",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.removeClass",
"type": "Function",
"tags": [],
"label": "removeClass",
"description": [],
"signature": [
"{ (): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (className: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (func: (index: number, className: string) => string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.removeClass",
"type": "Function",
"tags": [],
"label": "removeClass",
"description": [],
"signature": [
"{ (): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (className: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (func: (index: number, className: string) => string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.removeClass.$1",
"type": "string",
"tags": [],
"label": "className",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.removeClass",
"type": "Function",
"tags": [],
"label": "removeClass",
"description": [],
"signature": [
"{ (): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (className: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (func: (index: number, className: string) => string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.removeClass.$1",
"type": "Function",
"tags": [],
"label": "func",
"description": [],
"signature": [
"(index: number, className: string) => string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.toggleClass",
"type": "Function",
"tags": [],
"label": "toggleClass",
"description": [],
"signature": [
"{ (className: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (className: string, toggleSwitch: boolean): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (toggleSwitch?: boolean | undefined): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (func: (index: number, className: string, toggleSwitch: boolean) => string, toggleSwitch?: boolean | undefined): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.toggleClass.$1",
"type": "string",
"tags": [],
"label": "className",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.toggleClass",
"type": "Function",
"tags": [],
"label": "toggleClass",
"description": [],
"signature": [
"{ (className: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (className: string, toggleSwitch: boolean): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (toggleSwitch?: boolean | undefined): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (func: (index: number, className: string, toggleSwitch: boolean) => string, toggleSwitch?: boolean | undefined): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.toggleClass.$1",
"type": "string",
"tags": [],
"label": "className",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.toggleClass.$2",
"type": "boolean",
"tags": [],
"label": "toggleSwitch",
"description": [],
"signature": [
"boolean"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.toggleClass",
"type": "Function",
"tags": [],
"label": "toggleClass",
"description": [],
"signature": [
"{ (className: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (className: string, toggleSwitch: boolean): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (toggleSwitch?: boolean | undefined): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (func: (index: number, className: string, toggleSwitch: boolean) => string, toggleSwitch?: boolean | undefined): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.toggleClass.$1",
"type": "CompoundType",
"tags": [],
"label": "toggleSwitch",
"description": [],
"signature": [
"boolean | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.toggleClass",
"type": "Function",
"tags": [],
"label": "toggleClass",
"description": [],
"signature": [
"{ (className: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (className: string, toggleSwitch: boolean): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (toggleSwitch?: boolean | undefined): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (func: (index: number, className: string, toggleSwitch: boolean) => string, toggleSwitch?: boolean | undefined): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.toggleClass.$1",
"type": "Function",
"tags": [],
"label": "func",
"description": [],
"signature": [
"(index: number, className: string, toggleSwitch: boolean) => string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.toggleClass.$2",
"type": "CompoundType",
"tags": [],
"label": "toggleSwitch",
"description": [],
"signature": [
"boolean | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.is",
"type": "Function",
"tags": [],
"label": "is",
"description": [],
"signature": [
"{ (selector: string): boolean; (element: cheerio.Element): boolean; (element: cheerio.Element[]): boolean; (selection: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"): boolean; (func: (index: number, element: cheerio.Element) => boolean): boolean; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.is.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.is",
"type": "Function",
"tags": [],
"label": "is",
"description": [],
"signature": [
"{ (selector: string): boolean; (element: cheerio.Element): boolean; (element: cheerio.Element[]): boolean; (selection: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"): boolean; (func: (index: number, element: cheerio.Element) => boolean): boolean; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.is.$1",
"type": "CompoundType",
"tags": [],
"label": "element",
"description": [],
"signature": [
"cheerio.Element"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.is",
"type": "Function",
"tags": [],
"label": "is",
"description": [],
"signature": [
"{ (selector: string): boolean; (element: cheerio.Element): boolean; (element: cheerio.Element[]): boolean; (selection: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"): boolean; (func: (index: number, element: cheerio.Element) => boolean): boolean; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.is.$1",
"type": "Array",
"tags": [],
"label": "element",
"description": [],
"signature": [
"cheerio.Element[]"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.is",
"type": "Function",
"tags": [],
"label": "is",
"description": [],
"signature": [
"{ (selector: string): boolean; (element: cheerio.Element): boolean; (element: cheerio.Element[]): boolean; (selection: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"): boolean; (func: (index: number, element: cheerio.Element) => boolean): boolean; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.is.$1",
"type": "Object",
"tags": [],
"label": "selection",
"description": [],
"signature": [
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.is",
"type": "Function",
"tags": [],
"label": "is",
"description": [],
"signature": [
"{ (selector: string): boolean; (element: cheerio.Element): boolean; (element: cheerio.Element[]): boolean; (selection: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"): boolean; (func: (index: number, element: cheerio.Element) => boolean): boolean; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.is.$1",
"type": "Function",
"tags": [],
"label": "func",
"description": [],
"signature": [
"(index: number, element: cheerio.Element) => boolean"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.serialize",
"type": "Function",
"tags": [],
"label": "serialize",
"description": [],
"signature": [
"() => string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.serializeArray",
"type": "Function",
"tags": [],
"label": "serializeArray",
"description": [],
"signature": [
"() => { name: string; value: string; }[]"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.find",
"type": "Function",
"tags": [],
"label": "find",
"description": [],
"signature": [
"{ (selector: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (element: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.find.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.find",
"type": "Function",
"tags": [],
"label": "find",
"description": [],
"signature": [
"{ (selector: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (element: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.find.$1",
"type": "Object",
"tags": [],
"label": "element",
"description": [],
"signature": [
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.parent",
"type": "Function",
"tags": [],
"label": "parent",
"description": [],
"signature": [
"(selector?: string | undefined) => ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.parent.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.parents",
"type": "Function",
"tags": [],
"label": "parents",
"description": [],
"signature": [
"(selector?: string | undefined) => ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.parents.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.parentsUntil",
"type": "Function",
"tags": [],
"label": "parentsUntil",
"description": [],
"signature": [
"{ (selector?: string | undefined, filter?: string | undefined): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (element: cheerio.Element, filter?: string | undefined): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (element: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
", filter?: string | undefined): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.parentsUntil.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.parentsUntil.$2",
"type": "string",
"tags": [],
"label": "filter",
"description": [],
"signature": [
"string | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.parentsUntil",
"type": "Function",
"tags": [],
"label": "parentsUntil",
"description": [],
"signature": [
"{ (selector?: string | undefined, filter?: string | undefined): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (element: cheerio.Element, filter?: string | undefined): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (element: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
", filter?: string | undefined): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.parentsUntil.$1",
"type": "CompoundType",
"tags": [],
"label": "element",
"description": [],
"signature": [
"cheerio.Element"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.parentsUntil.$2",
"type": "string",
"tags": [],
"label": "filter",
"description": [],
"signature": [
"string | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.parentsUntil",
"type": "Function",
"tags": [],
"label": "parentsUntil",
"description": [],
"signature": [
"{ (selector?: string | undefined, filter?: string | undefined): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (element: cheerio.Element, filter?: string | undefined): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (element: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
", filter?: string | undefined): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.parentsUntil.$1",
"type": "Object",
"tags": [],
"label": "element",
"description": [],
"signature": [
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.parentsUntil.$2",
"type": "string",
"tags": [],
"label": "filter",
"description": [],
"signature": [
"string | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.prop",
"type": "Function",
"tags": [],
"label": "prop",
"description": [],
"signature": [
"{ (name: string): any; (name: string, value: any): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.prop.$1",
"type": "string",
"tags": [],
"label": "name",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.prop",
"type": "Function",
"tags": [],
"label": "prop",
"description": [],
"signature": [
"{ (name: string): any; (name: string, value: any): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.prop.$1",
"type": "string",
"tags": [],
"label": "name",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.prop.$2",
"type": "Any",
"tags": [],
"label": "value",
"description": [],
"signature": [
"any"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.closest",
"type": "Function",
"tags": [],
"label": "closest",
"description": [],
"signature": [
"{ (): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (selector: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.closest",
"type": "Function",
"tags": [],
"label": "closest",
"description": [],
"signature": [
"{ (): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (selector: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.closest.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.next",
"type": "Function",
"tags": [],
"label": "next",
"description": [],
"signature": [
"(selector?: string | undefined) => ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.next.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.nextAll",
"type": "Function",
"tags": [],
"label": "nextAll",
"description": [],
"signature": [
"{ (): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (selector: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.nextAll",
"type": "Function",
"tags": [],
"label": "nextAll",
"description": [],
"signature": [
"{ (): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (selector: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.nextAll.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.nextUntil",
"type": "Function",
"tags": [],
"label": "nextUntil",
"description": [],
"signature": [
"{ (selector?: string | undefined, filter?: string | undefined): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (element: cheerio.Element, filter?: string | undefined): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (element: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
", filter?: string | undefined): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.nextUntil.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.nextUntil.$2",
"type": "string",
"tags": [],
"label": "filter",
"description": [],
"signature": [
"string | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.nextUntil",
"type": "Function",
"tags": [],
"label": "nextUntil",
"description": [],
"signature": [
"{ (selector?: string | undefined, filter?: string | undefined): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (element: cheerio.Element, filter?: string | undefined): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (element: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
", filter?: string | undefined): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.nextUntil.$1",
"type": "CompoundType",
"tags": [],
"label": "element",
"description": [],
"signature": [
"cheerio.Element"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.nextUntil.$2",
"type": "string",
"tags": [],
"label": "filter",
"description": [],
"signature": [
"string | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.nextUntil",
"type": "Function",
"tags": [],
"label": "nextUntil",
"description": [],
"signature": [
"{ (selector?: string | undefined, filter?: string | undefined): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (element: cheerio.Element, filter?: string | undefined): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (element: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
", filter?: string | undefined): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.nextUntil.$1",
"type": "Object",
"tags": [],
"label": "element",
"description": [],
"signature": [
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.nextUntil.$2",
"type": "string",
"tags": [],
"label": "filter",
"description": [],
"signature": [
"string | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.prev",
"type": "Function",
"tags": [],
"label": "prev",
"description": [],
"signature": [
"(selector?: string | undefined) => ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.prev.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.prevAll",
"type": "Function",
"tags": [],
"label": "prevAll",
"description": [],
"signature": [
"{ (): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (selector: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.prevAll",
"type": "Function",
"tags": [],
"label": "prevAll",
"description": [],
"signature": [
"{ (): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (selector: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.prevAll.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.prevUntil",
"type": "Function",
"tags": [],
"label": "prevUntil",
"description": [],
"signature": [
"{ (selector?: string | undefined, filter?: string | undefined): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (element: cheerio.Element, filter?: string | undefined): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (element: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
", filter?: string | undefined): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.prevUntil.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.prevUntil.$2",
"type": "string",
"tags": [],
"label": "filter",
"description": [],
"signature": [
"string | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.prevUntil",
"type": "Function",
"tags": [],
"label": "prevUntil",
"description": [],
"signature": [
"{ (selector?: string | undefined, filter?: string | undefined): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (element: cheerio.Element, filter?: string | undefined): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (element: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
", filter?: string | undefined): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.prevUntil.$1",
"type": "CompoundType",
"tags": [],
"label": "element",
"description": [],
"signature": [
"cheerio.Element"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.prevUntil.$2",
"type": "string",
"tags": [],
"label": "filter",
"description": [],
"signature": [
"string | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.prevUntil",
"type": "Function",
"tags": [],
"label": "prevUntil",
"description": [],
"signature": [
"{ (selector?: string | undefined, filter?: string | undefined): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (element: cheerio.Element, filter?: string | undefined): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (element: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
", filter?: string | undefined): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.prevUntil.$1",
"type": "Object",
"tags": [],
"label": "element",
"description": [],
"signature": [
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.prevUntil.$2",
"type": "string",
"tags": [],
"label": "filter",
"description": [],
"signature": [
"string | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.slice",
"type": "Function",
"tags": [],
"label": "slice",
"description": [],
"signature": [
"(start: number, end?: number | undefined) => ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.slice.$1",
"type": "number",
"tags": [],
"label": "start",
"description": [],
"signature": [
"number"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.slice.$2",
"type": "number",
"tags": [],
"label": "end",
"description": [],
"signature": [
"number | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.siblings",
"type": "Function",
"tags": [],
"label": "siblings",
"description": [],
"signature": [
"(selector?: string | undefined) => ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.siblings.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.children",
"type": "Function",
"tags": [],
"label": "children",
"description": [],
"signature": [
"(selector?: string | undefined) => ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.children.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.contents",
"type": "Function",
"tags": [],
"label": "contents",
"description": [],
"signature": [
"() => ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.each",
"type": "Function",
"tags": [],
"label": "each",
"description": [],
"signature": [
"(func: (index: number, element: cheerio.Element) => any) => ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.each.$1",
"type": "Function",
"tags": [],
"label": "func",
"description": [],
"signature": [
"(index: number, element: cheerio.Element) => any"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.map",
"type": "Function",
"tags": [],
"label": "map",
"description": [],
"signature": [
"(func: (index: number, element: cheerio.Element) => any) => ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.map.$1",
"type": "Function",
"tags": [],
"label": "func",
"description": [],
"signature": [
"(index: number, element: cheerio.Element) => any"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.filter",
"type": "Function",
"tags": [],
"label": "filter",
"description": [],
"signature": [
"{ (selector: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (selection: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (element: cheerio.Element): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (elements: cheerio.Element[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (func: (index: number, element: cheerio.Element) => boolean): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.filter.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.filter",
"type": "Function",
"tags": [],
"label": "filter",
"description": [],
"signature": [
"{ (selector: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (selection: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (element: cheerio.Element): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (elements: cheerio.Element[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (func: (index: number, element: cheerio.Element) => boolean): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.filter.$1",
"type": "Object",
"tags": [],
"label": "selection",
"description": [],
"signature": [
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.filter",
"type": "Function",
"tags": [],
"label": "filter",
"description": [],
"signature": [
"{ (selector: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (selection: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (element: cheerio.Element): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (elements: cheerio.Element[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (func: (index: number, element: cheerio.Element) => boolean): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.filter.$1",
"type": "CompoundType",
"tags": [],
"label": "element",
"description": [],
"signature": [
"cheerio.Element"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.filter",
"type": "Function",
"tags": [],
"label": "filter",
"description": [],
"signature": [
"{ (selector: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (selection: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (element: cheerio.Element): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (elements: cheerio.Element[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (func: (index: number, element: cheerio.Element) => boolean): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.filter.$1",
"type": "Array",
"tags": [],
"label": "elements",
"description": [],
"signature": [
"cheerio.Element[]"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.filter",
"type": "Function",
"tags": [],
"label": "filter",
"description": [],
"signature": [
"{ (selector: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (selection: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (element: cheerio.Element): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (elements: cheerio.Element[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (func: (index: number, element: cheerio.Element) => boolean): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.filter.$1",
"type": "Function",
"tags": [],
"label": "func",
"description": [],
"signature": [
"(index: number, element: cheerio.Element) => boolean"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.not",
"type": "Function",
"tags": [],
"label": "not",
"description": [],
"signature": [
"{ (selector: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (selection: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (element: cheerio.Element): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (func: (index: number, element: cheerio.Element) => boolean): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.not.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.not",
"type": "Function",
"tags": [],
"label": "not",
"description": [],
"signature": [
"{ (selector: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (selection: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (element: cheerio.Element): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (func: (index: number, element: cheerio.Element) => boolean): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.not.$1",
"type": "Object",
"tags": [],
"label": "selection",
"description": [],
"signature": [
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.not",
"type": "Function",
"tags": [],
"label": "not",
"description": [],
"signature": [
"{ (selector: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (selection: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (element: cheerio.Element): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (func: (index: number, element: cheerio.Element) => boolean): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.not.$1",
"type": "CompoundType",
"tags": [],
"label": "element",
"description": [],
"signature": [
"cheerio.Element"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.not",
"type": "Function",
"tags": [],
"label": "not",
"description": [],
"signature": [
"{ (selector: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (selection: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (element: cheerio.Element): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (func: (index: number, element: cheerio.Element) => boolean): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.not.$1",
"type": "Function",
"tags": [],
"label": "func",
"description": [],
"signature": [
"(index: number, element: cheerio.Element) => boolean"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.first",
"type": "Function",
"tags": [],
"label": "first",
"description": [],
"signature": [
"() => ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.last",
"type": "Function",
"tags": [],
"label": "last",
"description": [],
"signature": [
"() => ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.eq",
"type": "Function",
"tags": [],
"label": "eq",
"description": [],
"signature": [
"(index: number) => ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.eq.$1",
"type": "number",
"tags": [],
"label": "index",
"description": [],
"signature": [
"number"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.get",
"type": "Function",
"tags": [],
"label": "get",
"description": [],
"signature": [
"{ (): any[]; (index: number): any; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.get",
"type": "Function",
"tags": [],
"label": "get",
"description": [],
"signature": [
"{ (): any[]; (index: number): any; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.get.$1",
"type": "number",
"tags": [],
"label": "index",
"description": [],
"signature": [
"number"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.index",
"type": "Function",
"tags": [],
"label": "index",
"description": [],
"signature": [
"{ (): number; (selector: string): number; (selection: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"): number; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.index",
"type": "Function",
"tags": [],
"label": "index",
"description": [],
"signature": [
"{ (): number; (selector: string): number; (selection: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"): number; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.index.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.index",
"type": "Function",
"tags": [],
"label": "index",
"description": [],
"signature": [
"{ (): number; (selector: string): number; (selection: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"): number; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.index.$1",
"type": "Object",
"tags": [],
"label": "selection",
"description": [],
"signature": [
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.end",
"type": "Function",
"tags": [],
"label": "end",
"description": [],
"signature": [
"() => ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.add",
"type": "Function",
"tags": [],
"label": "add",
"description": [],
"signature": [
"{ (selectorOrHtml: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (selector: string, context: Document): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (element: cheerio.Element): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (elements: cheerio.Element[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (selection: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.add.$1",
"type": "string",
"tags": [],
"label": "selectorOrHtml",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.add",
"type": "Function",
"tags": [],
"label": "add",
"description": [],
"signature": [
"{ (selectorOrHtml: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (selector: string, context: Document): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (element: cheerio.Element): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (elements: cheerio.Element[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (selection: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.add.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.add.$2",
"type": "Object",
"tags": [],
"label": "context",
"description": [],
"signature": [
"Document"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.add",
"type": "Function",
"tags": [],
"label": "add",
"description": [],
"signature": [
"{ (selectorOrHtml: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (selector: string, context: Document): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (element: cheerio.Element): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (elements: cheerio.Element[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (selection: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.add.$1",
"type": "CompoundType",
"tags": [],
"label": "element",
"description": [],
"signature": [
"cheerio.Element"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.add",
"type": "Function",
"tags": [],
"label": "add",
"description": [],
"signature": [
"{ (selectorOrHtml: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (selector: string, context: Document): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (element: cheerio.Element): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (elements: cheerio.Element[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (selection: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.add.$1",
"type": "Array",
"tags": [],
"label": "elements",
"description": [],
"signature": [
"cheerio.Element[]"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.add",
"type": "Function",
"tags": [],
"label": "add",
"description": [],
"signature": [
"{ (selectorOrHtml: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (selector: string, context: Document): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (element: cheerio.Element): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (elements: cheerio.Element[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (selection: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.add.$1",
"type": "Object",
"tags": [],
"label": "selection",
"description": [],
"signature": [
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.addBack",
"type": "Function",
"tags": [],
"label": "addBack",
"description": [],
"signature": [
"{ (): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (filter: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.addBack",
"type": "Function",
"tags": [],
"label": "addBack",
"description": [],
"signature": [
"{ (): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (filter: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.addBack.$1",
"type": "string",
"tags": [],
"label": "filter",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.appendTo",
"type": "Function",
"tags": [],
"label": "appendTo",
"description": [],
"signature": [
"(target: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
") => ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.appendTo.$1",
"type": "Object",
"tags": [],
"label": "target",
"description": [],
"signature": [
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.prependTo",
"type": "Function",
"tags": [],
"label": "prependTo",
"description": [],
"signature": [
"(target: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
") => ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.prependTo.$1",
"type": "Object",
"tags": [],
"label": "target",
"description": [],
"signature": [
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.append",
"type": "Function",
"tags": [],
"label": "append",
"description": [],
"signature": [
"{ (content: string, ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: Document, ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: Document[], ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
", ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.append.$1",
"type": "string",
"tags": [],
"label": "content",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.append.$2",
"type": "Array",
"tags": [],
"label": "contents",
"description": [],
"signature": [
"any[]"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.append",
"type": "Function",
"tags": [],
"label": "append",
"description": [],
"signature": [
"{ (content: string, ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: Document, ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: Document[], ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
", ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.append.$1",
"type": "Object",
"tags": [],
"label": "content",
"description": [],
"signature": [
"Document"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.append.$2",
"type": "Array",
"tags": [],
"label": "contents",
"description": [],
"signature": [
"any[]"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.append",
"type": "Function",
"tags": [],
"label": "append",
"description": [],
"signature": [
"{ (content: string, ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: Document, ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: Document[], ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
", ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.append.$1",
"type": "Array",
"tags": [],
"label": "content",
"description": [],
"signature": [
"Document[]"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.append.$2",
"type": "Array",
"tags": [],
"label": "contents",
"description": [],
"signature": [
"any[]"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.append",
"type": "Function",
"tags": [],
"label": "append",
"description": [],
"signature": [
"{ (content: string, ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: Document, ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: Document[], ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
", ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.append.$1",
"type": "Object",
"tags": [],
"label": "content",
"description": [],
"signature": [
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.append.$2",
"type": "Array",
"tags": [],
"label": "contents",
"description": [],
"signature": [
"any[]"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.prepend",
"type": "Function",
"tags": [],
"label": "prepend",
"description": [],
"signature": [
"{ (content: string, ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: Document, ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: Document[], ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
", ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.prepend.$1",
"type": "string",
"tags": [],
"label": "content",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.prepend.$2",
"type": "Array",
"tags": [],
"label": "contents",
"description": [],
"signature": [
"any[]"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.prepend",
"type": "Function",
"tags": [],
"label": "prepend",
"description": [],
"signature": [
"{ (content: string, ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: Document, ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: Document[], ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
", ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.prepend.$1",
"type": "Object",
"tags": [],
"label": "content",
"description": [],
"signature": [
"Document"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.prepend.$2",
"type": "Array",
"tags": [],
"label": "contents",
"description": [],
"signature": [
"any[]"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.prepend",
"type": "Function",
"tags": [],
"label": "prepend",
"description": [],
"signature": [
"{ (content: string, ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: Document, ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: Document[], ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
", ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.prepend.$1",
"type": "Array",
"tags": [],
"label": "content",
"description": [],
"signature": [
"Document[]"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.prepend.$2",
"type": "Array",
"tags": [],
"label": "contents",
"description": [],
"signature": [
"any[]"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.prepend",
"type": "Function",
"tags": [],
"label": "prepend",
"description": [],
"signature": [
"{ (content: string, ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: Document, ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: Document[], ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
", ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.prepend.$1",
"type": "Object",
"tags": [],
"label": "content",
"description": [],
"signature": [
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.prepend.$2",
"type": "Array",
"tags": [],
"label": "contents",
"description": [],
"signature": [
"any[]"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.after",
"type": "Function",
"tags": [],
"label": "after",
"description": [],
"signature": [
"{ (content: string, ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: Document, ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: Document[], ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
", ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.after.$1",
"type": "string",
"tags": [],
"label": "content",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.after.$2",
"type": "Array",
"tags": [],
"label": "contents",
"description": [],
"signature": [
"any[]"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.after",
"type": "Function",
"tags": [],
"label": "after",
"description": [],
"signature": [
"{ (content: string, ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: Document, ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: Document[], ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
", ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.after.$1",
"type": "Object",
"tags": [],
"label": "content",
"description": [],
"signature": [
"Document"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.after.$2",
"type": "Array",
"tags": [],
"label": "contents",
"description": [],
"signature": [
"any[]"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.after",
"type": "Function",
"tags": [],
"label": "after",
"description": [],
"signature": [
"{ (content: string, ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: Document, ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: Document[], ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
", ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.after.$1",
"type": "Array",
"tags": [],
"label": "content",
"description": [],
"signature": [
"Document[]"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.after.$2",
"type": "Array",
"tags": [],
"label": "contents",
"description": [],
"signature": [
"any[]"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.after",
"type": "Function",
"tags": [],
"label": "after",
"description": [],
"signature": [
"{ (content: string, ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: Document, ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: Document[], ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
", ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.after.$1",
"type": "Object",
"tags": [],
"label": "content",
"description": [],
"signature": [
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.after.$2",
"type": "Array",
"tags": [],
"label": "contents",
"description": [],
"signature": [
"any[]"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.insertAfter",
"type": "Function",
"tags": [],
"label": "insertAfter",
"description": [],
"signature": [
"{ (content: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: Document): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.insertAfter.$1",
"type": "string",
"tags": [],
"label": "content",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.insertAfter",
"type": "Function",
"tags": [],
"label": "insertAfter",
"description": [],
"signature": [
"{ (content: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: Document): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.insertAfter.$1",
"type": "Object",
"tags": [],
"label": "content",
"description": [],
"signature": [
"Document"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.insertAfter",
"type": "Function",
"tags": [],
"label": "insertAfter",
"description": [],
"signature": [
"{ (content: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: Document): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.insertAfter.$1",
"type": "Object",
"tags": [],
"label": "content",
"description": [],
"signature": [
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.before",
"type": "Function",
"tags": [],
"label": "before",
"description": [],
"signature": [
"{ (content: string, ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: Document, ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: Document[], ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
", ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.before.$1",
"type": "string",
"tags": [],
"label": "content",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.before.$2",
"type": "Array",
"tags": [],
"label": "contents",
"description": [],
"signature": [
"any[]"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.before",
"type": "Function",
"tags": [],
"label": "before",
"description": [],
"signature": [
"{ (content: string, ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: Document, ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: Document[], ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
", ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.before.$1",
"type": "Object",
"tags": [],
"label": "content",
"description": [],
"signature": [
"Document"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.before.$2",
"type": "Array",
"tags": [],
"label": "contents",
"description": [],
"signature": [
"any[]"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.before",
"type": "Function",
"tags": [],
"label": "before",
"description": [],
"signature": [
"{ (content: string, ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: Document, ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: Document[], ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
", ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.before.$1",
"type": "Array",
"tags": [],
"label": "content",
"description": [],
"signature": [
"Document[]"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.before.$2",
"type": "Array",
"tags": [],
"label": "contents",
"description": [],
"signature": [
"any[]"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.before",
"type": "Function",
"tags": [],
"label": "before",
"description": [],
"signature": [
"{ (content: string, ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: Document, ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: Document[], ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
", ...contents: any[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.before.$1",
"type": "Object",
"tags": [],
"label": "content",
"description": [],
"signature": [
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.before.$2",
"type": "Array",
"tags": [],
"label": "contents",
"description": [],
"signature": [
"any[]"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.insertBefore",
"type": "Function",
"tags": [],
"label": "insertBefore",
"description": [],
"signature": [
"{ (content: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: Document): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.insertBefore.$1",
"type": "string",
"tags": [],
"label": "content",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.insertBefore",
"type": "Function",
"tags": [],
"label": "insertBefore",
"description": [],
"signature": [
"{ (content: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: Document): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.insertBefore.$1",
"type": "Object",
"tags": [],
"label": "content",
"description": [],
"signature": [
"Document"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.insertBefore",
"type": "Function",
"tags": [],
"label": "insertBefore",
"description": [],
"signature": [
"{ (content: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: Document): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.insertBefore.$1",
"type": "Object",
"tags": [],
"label": "content",
"description": [],
"signature": [
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.remove",
"type": "Function",
"tags": [],
"label": "remove",
"description": [],
"signature": [
"(selector?: string | undefined) => ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.remove.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.replaceWith",
"type": "Function",
"tags": [],
"label": "replaceWith",
"description": [],
"signature": [
"{ (content: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: cheerio.Element): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: cheerio.Element[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: () => ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.replaceWith.$1",
"type": "string",
"tags": [],
"label": "content",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.replaceWith",
"type": "Function",
"tags": [],
"label": "replaceWith",
"description": [],
"signature": [
"{ (content: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: cheerio.Element): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: cheerio.Element[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: () => ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.replaceWith.$1",
"type": "CompoundType",
"tags": [],
"label": "content",
"description": [],
"signature": [
"cheerio.Element"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.replaceWith",
"type": "Function",
"tags": [],
"label": "replaceWith",
"description": [],
"signature": [
"{ (content: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: cheerio.Element): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: cheerio.Element[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: () => ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.replaceWith.$1",
"type": "Array",
"tags": [],
"label": "content",
"description": [],
"signature": [
"cheerio.Element[]"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.replaceWith",
"type": "Function",
"tags": [],
"label": "replaceWith",
"description": [],
"signature": [
"{ (content: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: cheerio.Element): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: cheerio.Element[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: () => ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.replaceWith.$1",
"type": "Object",
"tags": [],
"label": "content",
"description": [],
"signature": [
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.replaceWith",
"type": "Function",
"tags": [],
"label": "replaceWith",
"description": [],
"signature": [
"{ (content: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: cheerio.Element): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: cheerio.Element[]): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: () => ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.replaceWith.$1",
"type": "Function",
"tags": [],
"label": "content",
"description": [],
"signature": [
"() => ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.empty",
"type": "Function",
"tags": [],
"label": "empty",
"description": [],
"signature": [
"() => ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.html",
"type": "Function",
"tags": [],
"label": "html",
"description": [],
"signature": [
"{ (): string | null; (html: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.html",
"type": "Function",
"tags": [],
"label": "html",
"description": [],
"signature": [
"{ (): string | null; (html: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.html.$1",
"type": "string",
"tags": [],
"label": "html",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.text",
"type": "Function",
"tags": [],
"label": "text",
"description": [],
"signature": [
"{ (): string; (text: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.text",
"type": "Function",
"tags": [],
"label": "text",
"description": [],
"signature": [
"{ (): string; (text: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.text.$1",
"type": "string",
"tags": [],
"label": "text",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.wrap",
"type": "Function",
"tags": [],
"label": "wrap",
"description": [],
"signature": [
"{ (content: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: Document): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.wrap.$1",
"type": "string",
"tags": [],
"label": "content",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.wrap",
"type": "Function",
"tags": [],
"label": "wrap",
"description": [],
"signature": [
"{ (content: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: Document): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.wrap.$1",
"type": "Object",
"tags": [],
"label": "content",
"description": [],
"signature": [
"Document"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.wrap",
"type": "Function",
"tags": [],
"label": "wrap",
"description": [],
"signature": [
"{ (content: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: Document): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (content: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.wrap.$1",
"type": "Object",
"tags": [],
"label": "content",
"description": [],
"signature": [
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.css",
"type": "Function",
"tags": [],
"label": "css",
"description": [],
"signature": [
"{ (propertyName: string): string; (propertyNames: string[]): string[]; (propertyName: string, value: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (propertyName: string, value: number): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (propertyName: string, func: (index: number, value: string) => string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (propertyName: string, func: (index: number, value: string) => number): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (properties: Record<string, any>): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.css.$1",
"type": "string",
"tags": [],
"label": "propertyName",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.css",
"type": "Function",
"tags": [],
"label": "css",
"description": [],
"signature": [
"{ (propertyName: string): string; (propertyNames: string[]): string[]; (propertyName: string, value: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (propertyName: string, value: number): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (propertyName: string, func: (index: number, value: string) => string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (propertyName: string, func: (index: number, value: string) => number): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (properties: Record<string, any>): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.css.$1",
"type": "Array",
"tags": [],
"label": "propertyNames",
"description": [],
"signature": [
"string[]"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.css",
"type": "Function",
"tags": [],
"label": "css",
"description": [],
"signature": [
"{ (propertyName: string): string; (propertyNames: string[]): string[]; (propertyName: string, value: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (propertyName: string, value: number): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (propertyName: string, func: (index: number, value: string) => string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (propertyName: string, func: (index: number, value: string) => number): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (properties: Record<string, any>): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.css.$1",
"type": "string",
"tags": [],
"label": "propertyName",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.css.$2",
"type": "string",
"tags": [],
"label": "value",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.css",
"type": "Function",
"tags": [],
"label": "css",
"description": [],
"signature": [
"{ (propertyName: string): string; (propertyNames: string[]): string[]; (propertyName: string, value: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (propertyName: string, value: number): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (propertyName: string, func: (index: number, value: string) => string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (propertyName: string, func: (index: number, value: string) => number): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (properties: Record<string, any>): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.css.$1",
"type": "string",
"tags": [],
"label": "propertyName",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.css.$2",
"type": "number",
"tags": [],
"label": "value",
"description": [],
"signature": [
"number"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.css",
"type": "Function",
"tags": [],
"label": "css",
"description": [],
"signature": [
"{ (propertyName: string): string; (propertyNames: string[]): string[]; (propertyName: string, value: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (propertyName: string, value: number): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (propertyName: string, func: (index: number, value: string) => string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (propertyName: string, func: (index: number, value: string) => number): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (properties: Record<string, any>): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.css.$1",
"type": "string",
"tags": [],
"label": "propertyName",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.css.$2",
"type": "Function",
"tags": [],
"label": "func",
"description": [],
"signature": [
"(index: number, value: string) => string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.css",
"type": "Function",
"tags": [],
"label": "css",
"description": [],
"signature": [
"{ (propertyName: string): string; (propertyNames: string[]): string[]; (propertyName: string, value: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (propertyName: string, value: number): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (propertyName: string, func: (index: number, value: string) => string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (propertyName: string, func: (index: number, value: string) => number): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (properties: Record<string, any>): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.css.$1",
"type": "string",
"tags": [],
"label": "propertyName",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.css.$2",
"type": "Function",
"tags": [],
"label": "func",
"description": [],
"signature": [
"(index: number, value: string) => number"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.css",
"type": "Function",
"tags": [],
"label": "css",
"description": [],
"signature": [
"{ (propertyName: string): string; (propertyNames: string[]): string[]; (propertyName: string, value: string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (propertyName: string, value: number): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (propertyName: string, func: (index: number, value: string) => string): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (propertyName: string, func: (index: number, value: string) => number): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; (properties: Record<string, any>): ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.css.$1",
"type": "Object",
"tags": [],
"label": "properties",
"description": [],
"signature": [
"Record<string, any>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.clone",
"type": "Function",
"tags": [],
"label": "clone",
"description": [],
"signature": [
"() => ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.toArray",
"type": "Function",
"tags": [],
"label": "toArray",
"description": [],
"signature": [
"() => ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
"[]"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.findTestSubjects",
"type": "Function",
"tags": [],
"label": "findTestSubjects",
"description": [],
"signature": [
"(selector: string) => ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.findTestSubjects.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.findTestSubject",
"type": "Function",
"tags": [],
"label": "findTestSubject",
"description": [],
"signature": [
"(selector: string) => ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerio.findTestSubject.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
}
],
"initialIsOpen": false
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerioStatic",
"type": "Interface",
"tags": [],
"label": "CustomCheerioStatic",
"description": [],
"signature": [
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerioStatic",
"text": "CustomCheerioStatic"
},
" extends CheerioSelector"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerioStatic.xml",
"type": "Function",
"tags": [],
"label": "xml",
"description": [],
"signature": [
"() => string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerioStatic.root",
"type": "Function",
"tags": [],
"label": "root",
"description": [],
"signature": [
"() => ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerioStatic.contains",
"type": "Function",
"tags": [],
"label": "contains",
"description": [],
"signature": [
"(container: cheerio.Element, contained: cheerio.Element) => boolean"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerioStatic.contains.$1",
"type": "CompoundType",
"tags": [],
"label": "container",
"description": [],
"signature": [
"cheerio.Element"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerioStatic.contains.$2",
"type": "CompoundType",
"tags": [],
"label": "contained",
"description": [],
"signature": [
"cheerio.Element"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerioStatic.parseHTML",
"type": "Function",
"tags": [],
"label": "parseHTML",
"description": [],
"signature": [
"(data: string, context?: Document | undefined, keepScripts?: boolean | undefined) => Document[]"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerioStatic.parseHTML.$1",
"type": "string",
"tags": [],
"label": "data",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerioStatic.parseHTML.$2",
"type": "Object",
"tags": [],
"label": "context",
"description": [],
"signature": [
"Document | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerioStatic.parseHTML.$3",
"type": "CompoundType",
"tags": [],
"label": "keepScripts",
"description": [],
"signature": [
"boolean | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerioStatic.html",
"type": "Function",
"tags": [],
"label": "html",
"description": [],
"signature": [
"{ (options?: cheerio.CheerioParserOptions | undefined): string; (selector: string, options?: cheerio.CheerioParserOptions | undefined): string; (element: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
", options?: cheerio.CheerioParserOptions | undefined): string; (element: cheerio.Element, options?: cheerio.CheerioParserOptions | undefined): string; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerioStatic.html.$1",
"type": "Object",
"tags": [],
"label": "options",
"description": [],
"signature": [
"cheerio.CheerioParserOptions | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerioStatic.html",
"type": "Function",
"tags": [],
"label": "html",
"description": [],
"signature": [
"{ (options?: cheerio.CheerioParserOptions | undefined): string; (selector: string, options?: cheerio.CheerioParserOptions | undefined): string; (element: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
", options?: cheerio.CheerioParserOptions | undefined): string; (element: cheerio.Element, options?: cheerio.CheerioParserOptions | undefined): string; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerioStatic.html.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerioStatic.html.$2",
"type": "Object",
"tags": [],
"label": "options",
"description": [],
"signature": [
"cheerio.CheerioParserOptions | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerioStatic.html",
"type": "Function",
"tags": [],
"label": "html",
"description": [],
"signature": [
"{ (options?: cheerio.CheerioParserOptions | undefined): string; (selector: string, options?: cheerio.CheerioParserOptions | undefined): string; (element: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
", options?: cheerio.CheerioParserOptions | undefined): string; (element: cheerio.Element, options?: cheerio.CheerioParserOptions | undefined): string; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerioStatic.html.$1",
"type": "Object",
"tags": [],
"label": "element",
"description": [],
"signature": [
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerioStatic.html.$2",
"type": "Object",
"tags": [],
"label": "options",
"description": [],
"signature": [
"cheerio.CheerioParserOptions | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerioStatic.html",
"type": "Function",
"tags": [],
"label": "html",
"description": [],
"signature": [
"{ (options?: cheerio.CheerioParserOptions | undefined): string; (selector: string, options?: cheerio.CheerioParserOptions | undefined): string; (element: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
},
", options?: cheerio.CheerioParserOptions | undefined): string; (element: cheerio.Element, options?: cheerio.CheerioParserOptions | undefined): string; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerioStatic.html.$1",
"type": "CompoundType",
"tags": [],
"label": "element",
"description": [],
"signature": [
"cheerio.Element"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerioStatic.html.$2",
"type": "Object",
"tags": [],
"label": "options",
"description": [],
"signature": [
"cheerio.CheerioParserOptions | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": false
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerioStatic.findTestSubjects",
"type": "Function",
"tags": [],
"label": "findTestSubjects",
"description": [],
"signature": [
"(selector: string) => ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerioStatic.findTestSubjects.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerioStatic.findTestSubject",
"type": "Function",
"tags": [],
"label": "findTestSubject",
"description": [],
"signature": [
"(selector: string) => ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.CustomCheerio",
"text": "CustomCheerio"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.CustomCheerioStatic.findTestSubject.$1",
"type": "string",
"tags": [],
"label": "selector",
"description": [],
"signature": [
"string"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/web_element_wrapper/custom_cheerio_api.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
}
],
"initialIsOpen": false
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.InterceptResponseFactory",
"type": "Interface",
"tags": [],
"label": "InterceptResponseFactory",
"description": [],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/browser.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.InterceptResponseFactory.fail",
"type": "Function",
"tags": [],
"label": "fail",
"description": [],
"signature": [
"() => [\"Fetch.failRequest\", ",
"Protocol",
".Fetch.FailRequestRequest]"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/browser.ts",
"deprecated": false,
"trackAdoption": false,
"children": [],
"returnComment": []
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.InterceptResponseFactory.fulfill",
"type": "Function",
"tags": [],
"label": "fulfill",
"description": [],
"signature": [
"(responseOptions: Omit<",
"Protocol",
".Fetch.FulfillRequestRequest, \"requestId\">) => [\"Fetch.fulfillRequest\", ",
"Protocol",
".Fetch.FulfillRequestRequest]"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/browser.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.InterceptResponseFactory.fulfill.$1",
"type": "Object",
"tags": [],
"label": "responseOptions",
"description": [],
"signature": [
"Omit<",
"Protocol",
".Fetch.FulfillRequestRequest, \"requestId\">"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/browser.ts",
"deprecated": false,
"trackAdoption": false,
"isRequired": true
}
],
"returnComment": []
}
],
"initialIsOpen": false
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.NetworkOptions",
"type": "Interface",
"tags": [],
"label": "NetworkOptions",
"description": [],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/remote/network_profiles.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.NetworkOptions.offline",
"type": "boolean",
"tags": [],
"label": "offline",
"description": [],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/remote/network_profiles.ts",
"deprecated": false,
"trackAdoption": false
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.NetworkOptions.latency",
"type": "number",
"tags": [],
"label": "latency",
"description": [],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/remote/network_profiles.ts",
"deprecated": false,
"trackAdoption": false
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.NetworkOptions.download_throughput",
"type": "number",
"tags": [],
"label": "download_throughput",
"description": [],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/remote/network_profiles.ts",
"deprecated": false,
"trackAdoption": false
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.NetworkOptions.upload_throughput",
"type": "number",
"tags": [],
"label": "upload_throughput",
"description": [],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/remote/network_profiles.ts",
"deprecated": false,
"trackAdoption": false
}
],
"initialIsOpen": false
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TimeoutOpt",
"type": "Interface",
"tags": [],
"label": "TimeoutOpt",
"description": [],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/types.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.TimeoutOpt.timeout",
"type": "number",
"tags": [],
"label": "timeout",
"description": [],
"signature": [
"number | undefined"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/types.ts",
"deprecated": false,
"trackAdoption": false
}
],
"initialIsOpen": false
}
],
"enums": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.Browsers",
"type": "Enum",
"tags": [],
"label": "Browsers",
"description": [],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/remote/browsers.ts",
"deprecated": false,
"trackAdoption": false,
"initialIsOpen": false
}
],
"misc": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.Browser",
"type": "Type",
"tags": [],
"label": "Browser",
"description": [],
"signature": [
"BrowserService"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/browser.ts",
"deprecated": false,
"trackAdoption": false,
"initialIsOpen": false
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.FtrProviderContext",
"type": "Type",
"tags": [],
"label": "FtrProviderContext",
"description": [],
"signature": [
{
"pluginId": "@kbn/test",
"scope": "common",
"docId": "kibKbnTestPluginApi",
"section": "def-common.GenericFtrProviderContext",
"text": "GenericFtrProviderContext"
},
"<{ retry: typeof ",
{
"pluginId": "@kbn/ftr-common-functional-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalServicesPluginApi",
"section": "def-common.RetryService",
"text": "RetryService"
},
"; es: ({ getService }: ",
{
"pluginId": "@kbn/ftr-common-functional-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => ",
"default",
"; kibanaServer: ({ getService }: ",
{
"pluginId": "@kbn/ftr-common-functional-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => ",
{
"pluginId": "@kbn/test",
"scope": "common",
"docId": "kibKbnTestPluginApi",
"section": "def-common.KbnClient",
"text": "KbnClient"
},
"; retryOnStale: ({ getService }: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => { <T>(fn: () => Promise<T>): Promise<T>; wrap<Args extends any[], Result>(fn: (...args: Args) => Promise<Result>): (...args: Args) => Promise<Result>; }; __webdriver__: ({ getService }: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => Promise<{ driver: ",
"WebDriver",
"; browserType: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.Browsers",
"text": "Browsers"
},
"; consoleLog$: ",
"Observable",
"<{ message: string; level: string; }>; }>; find: (ctx: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => Promise<",
"FindService",
">; testSubjects: typeof ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.TestSubjects",
"text": "TestSubjects"
},
"; browser: (ctx: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => Promise<BrowserService>; toasts: typeof ",
"ToastsService",
"; }, {}, ProvidedTypeMap<{ retry: typeof ",
{
"pluginId": "@kbn/ftr-common-functional-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalServicesPluginApi",
"section": "def-common.RetryService",
"text": "RetryService"
},
"; es: ({ getService }: ",
{
"pluginId": "@kbn/ftr-common-functional-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => ",
"default",
"; kibanaServer: ({ getService }: ",
{
"pluginId": "@kbn/ftr-common-functional-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => ",
{
"pluginId": "@kbn/test",
"scope": "common",
"docId": "kibKbnTestPluginApi",
"section": "def-common.KbnClient",
"text": "KbnClient"
},
"; retryOnStale: ({ getService }: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => { <T>(fn: () => Promise<T>): Promise<T>; wrap<Args extends any[], Result>(fn: (...args: Args) => Promise<Result>): (...args: Args) => Promise<Result>; }; __webdriver__: ({ getService }: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => Promise<{ driver: ",
"WebDriver",
"; browserType: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.Browsers",
"text": "Browsers"
},
"; consoleLog$: ",
"Observable",
"<{ message: string; level: string; }>; }>; find: (ctx: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => Promise<",
"FindService",
">; testSubjects: typeof ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.TestSubjects",
"text": "TestSubjects"
},
"; browser: (ctx: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => Promise<BrowserService>; toasts: typeof ",
"ToastsService",
"; }>, ProvidedTypeMap<{}>>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/ftr_provider_context.ts",
"deprecated": false,
"trackAdoption": false,
"initialIsOpen": false
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.NetworkProfile",
"type": "Type",
"tags": [],
"label": "NetworkProfile",
"description": [],
"signature": [
"\"NO_THROTTLING\" | \"FAST_3G\" | \"SLOW_3G\" | \"OFFLINE\" | \"CLOUD_USER\""
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/remote/network_profiles.ts",
"deprecated": false,
"trackAdoption": false,
"initialIsOpen": false
}
],
"objects": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.NETWORK_PROFILES",
"type": "Object",
"tags": [],
"label": "NETWORK_PROFILES",
"description": [],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/remote/network_profiles.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.NETWORK_PROFILES.NO_THROTTLING",
"type": "Object",
"tags": [],
"label": "NO_THROTTLING",
"description": [],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/remote/network_profiles.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.NETWORK_PROFILES.NO_THROTTLING.offline",
"type": "boolean",
"tags": [],
"label": "offline",
"description": [],
"signature": [
"false"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/remote/network_profiles.ts",
"deprecated": false,
"trackAdoption": false
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.NETWORK_PROFILES.NO_THROTTLING.latency",
"type": "number",
"tags": [],
"label": "latency",
"description": [],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/remote/network_profiles.ts",
"deprecated": false,
"trackAdoption": false
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.NETWORK_PROFILES.NO_THROTTLING.download_throughput",
"type": "number",
"tags": [],
"label": "download_throughput",
"description": [],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/remote/network_profiles.ts",
"deprecated": false,
"trackAdoption": false
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.NETWORK_PROFILES.NO_THROTTLING.upload_throughput",
"type": "number",
"tags": [],
"label": "upload_throughput",
"description": [],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/remote/network_profiles.ts",
"deprecated": false,
"trackAdoption": false
}
]
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.NETWORK_PROFILES.FAST_3G",
"type": "Object",
"tags": [],
"label": "FAST_3G",
"description": [],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/remote/network_profiles.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.NETWORK_PROFILES.FAST_3G.offline",
"type": "boolean",
"tags": [],
"label": "offline",
"description": [],
"signature": [
"false"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/remote/network_profiles.ts",
"deprecated": false,
"trackAdoption": false
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.NETWORK_PROFILES.FAST_3G.latency",
"type": "number",
"tags": [],
"label": "latency",
"description": [],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/remote/network_profiles.ts",
"deprecated": false,
"trackAdoption": false
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.NETWORK_PROFILES.FAST_3G.download_throughput",
"type": "number",
"tags": [],
"label": "download_throughput",
"description": [],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/remote/network_profiles.ts",
"deprecated": false,
"trackAdoption": false
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.NETWORK_PROFILES.FAST_3G.upload_throughput",
"type": "number",
"tags": [],
"label": "upload_throughput",
"description": [],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/remote/network_profiles.ts",
"deprecated": false,
"trackAdoption": false
}
]
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.NETWORK_PROFILES.SLOW_3G",
"type": "Object",
"tags": [],
"label": "SLOW_3G",
"description": [],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/remote/network_profiles.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.NETWORK_PROFILES.SLOW_3G.offline",
"type": "boolean",
"tags": [],
"label": "offline",
"description": [],
"signature": [
"false"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/remote/network_profiles.ts",
"deprecated": false,
"trackAdoption": false
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.NETWORK_PROFILES.SLOW_3G.latency",
"type": "number",
"tags": [],
"label": "latency",
"description": [],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/remote/network_profiles.ts",
"deprecated": false,
"trackAdoption": false
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.NETWORK_PROFILES.SLOW_3G.download_throughput",
"type": "number",
"tags": [],
"label": "download_throughput",
"description": [],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/remote/network_profiles.ts",
"deprecated": false,
"trackAdoption": false
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.NETWORK_PROFILES.SLOW_3G.upload_throughput",
"type": "number",
"tags": [],
"label": "upload_throughput",
"description": [],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/remote/network_profiles.ts",
"deprecated": false,
"trackAdoption": false
}
]
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.NETWORK_PROFILES.OFFLINE",
"type": "Object",
"tags": [],
"label": "OFFLINE",
"description": [],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/remote/network_profiles.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.NETWORK_PROFILES.OFFLINE.offline",
"type": "boolean",
"tags": [],
"label": "offline",
"description": [],
"signature": [
"true"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/remote/network_profiles.ts",
"deprecated": false,
"trackAdoption": false
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.NETWORK_PROFILES.OFFLINE.latency",
"type": "number",
"tags": [],
"label": "latency",
"description": [],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/remote/network_profiles.ts",
"deprecated": false,
"trackAdoption": false
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.NETWORK_PROFILES.OFFLINE.download_throughput",
"type": "number",
"tags": [],
"label": "download_throughput",
"description": [],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/remote/network_profiles.ts",
"deprecated": false,
"trackAdoption": false
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.NETWORK_PROFILES.OFFLINE.upload_throughput",
"type": "number",
"tags": [],
"label": "upload_throughput",
"description": [],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/remote/network_profiles.ts",
"deprecated": false,
"trackAdoption": false
}
]
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.NETWORK_PROFILES.CLOUD_USER",
"type": "Object",
"tags": [],
"label": "CLOUD_USER",
"description": [],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/remote/network_profiles.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.NETWORK_PROFILES.CLOUD_USER.offline",
"type": "boolean",
"tags": [],
"label": "offline",
"description": [],
"signature": [
"false"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/remote/network_profiles.ts",
"deprecated": false,
"trackAdoption": false
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.NETWORK_PROFILES.CLOUD_USER.latency",
"type": "number",
"tags": [],
"label": "latency",
"description": [],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/remote/network_profiles.ts",
"deprecated": false,
"trackAdoption": false
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.NETWORK_PROFILES.CLOUD_USER.download_throughput",
"type": "number",
"tags": [],
"label": "download_throughput",
"description": [],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/remote/network_profiles.ts",
"deprecated": false,
"trackAdoption": false
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.NETWORK_PROFILES.CLOUD_USER.upload_throughput",
"type": "number",
"tags": [],
"label": "upload_throughput",
"description": [],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/remote/network_profiles.ts",
"deprecated": false,
"trackAdoption": false
}
]
}
],
"initialIsOpen": false
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.services",
"type": "Object",
"tags": [],
"label": "services",
"description": [],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/all.ts",
"deprecated": false,
"trackAdoption": false,
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.services.retryOnStale",
"type": "Function",
"tags": [],
"label": "retryOnStale",
"description": [],
"signature": [
"({ getService }: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => { <T>(fn: () => Promise<T>): Promise<T>; wrap<Args extends any[], Result>(fn: (...args: Args) => Promise<Result>): (...args: Args) => Promise<Result>; }"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/all.ts",
"deprecated": false,
"trackAdoption": false,
"returnComment": [],
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.services.retryOnStale.$1",
"type": "Object",
"tags": [],
"label": "__0",
"description": [],
"signature": [
{
"pluginId": "@kbn/test",
"scope": "common",
"docId": "kibKbnTestPluginApi",
"section": "def-common.GenericFtrProviderContext",
"text": "GenericFtrProviderContext"
},
"<{ retry: typeof ",
{
"pluginId": "@kbn/ftr-common-functional-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalServicesPluginApi",
"section": "def-common.RetryService",
"text": "RetryService"
},
"; es: ({ getService }: ",
{
"pluginId": "@kbn/ftr-common-functional-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => ",
"default",
"; kibanaServer: ({ getService }: ",
{
"pluginId": "@kbn/ftr-common-functional-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => ",
{
"pluginId": "@kbn/test",
"scope": "common",
"docId": "kibKbnTestPluginApi",
"section": "def-common.KbnClient",
"text": "KbnClient"
},
"; retryOnStale: ({ getService }: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => { <T>(fn: () => Promise<T>): Promise<T>; wrap<Args extends any[], Result>(fn: (...args: Args) => Promise<Result>): (...args: Args) => Promise<Result>; }; __webdriver__: ({ getService }: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => Promise<{ driver: ",
"WebDriver",
"; browserType: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.Browsers",
"text": "Browsers"
},
"; consoleLog$: ",
"Observable",
"<{ message: string; level: string; }>; }>; find: (ctx: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => Promise<",
"FindService",
">; testSubjects: typeof ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.TestSubjects",
"text": "TestSubjects"
},
"; browser: (ctx: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => Promise<BrowserService>; toasts: typeof ",
"ToastsService",
"; }, {}, ProvidedTypeMap<{ retry: typeof ",
{
"pluginId": "@kbn/ftr-common-functional-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalServicesPluginApi",
"section": "def-common.RetryService",
"text": "RetryService"
},
"; es: ({ getService }: ",
{
"pluginId": "@kbn/ftr-common-functional-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => ",
"default",
"; kibanaServer: ({ getService }: ",
{
"pluginId": "@kbn/ftr-common-functional-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => ",
{
"pluginId": "@kbn/test",
"scope": "common",
"docId": "kibKbnTestPluginApi",
"section": "def-common.KbnClient",
"text": "KbnClient"
},
"; retryOnStale: ({ getService }: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => { <T>(fn: () => Promise<T>): Promise<T>; wrap<Args extends any[], Result>(fn: (...args: Args) => Promise<Result>): (...args: Args) => Promise<Result>; }; __webdriver__: ({ getService }: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => Promise<{ driver: ",
"WebDriver",
"; browserType: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.Browsers",
"text": "Browsers"
},
"; consoleLog$: ",
"Observable",
"<{ message: string; level: string; }>; }>; find: (ctx: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => Promise<",
"FindService",
">; testSubjects: typeof ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.TestSubjects",
"text": "TestSubjects"
},
"; browser: (ctx: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => Promise<BrowserService>; toasts: typeof ",
"ToastsService",
"; }>, ProvidedTypeMap<{}>>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/retry_on_stale.ts",
"deprecated": false,
"trackAdoption": false
}
]
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.services.__webdriver__",
"type": "Function",
"tags": [],
"label": "__webdriver__",
"description": [],
"signature": [
"({ getService }: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => Promise<{ driver: ",
"WebDriver",
"; browserType: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.Browsers",
"text": "Browsers"
},
"; consoleLog$: ",
"Observable",
"<{ message: string; level: string; }>; }>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/all.ts",
"deprecated": false,
"trackAdoption": false,
"returnComment": [],
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.services.__webdriver__.$1",
"type": "Object",
"tags": [],
"label": "__0",
"description": [],
"signature": [
{
"pluginId": "@kbn/test",
"scope": "common",
"docId": "kibKbnTestPluginApi",
"section": "def-common.GenericFtrProviderContext",
"text": "GenericFtrProviderContext"
},
"<{ retry: typeof ",
{
"pluginId": "@kbn/ftr-common-functional-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalServicesPluginApi",
"section": "def-common.RetryService",
"text": "RetryService"
},
"; es: ({ getService }: ",
{
"pluginId": "@kbn/ftr-common-functional-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => ",
"default",
"; kibanaServer: ({ getService }: ",
{
"pluginId": "@kbn/ftr-common-functional-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => ",
{
"pluginId": "@kbn/test",
"scope": "common",
"docId": "kibKbnTestPluginApi",
"section": "def-common.KbnClient",
"text": "KbnClient"
},
"; retryOnStale: ({ getService }: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => { <T>(fn: () => Promise<T>): Promise<T>; wrap<Args extends any[], Result>(fn: (...args: Args) => Promise<Result>): (...args: Args) => Promise<Result>; }; __webdriver__: ({ getService }: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => Promise<{ driver: ",
"WebDriver",
"; browserType: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.Browsers",
"text": "Browsers"
},
"; consoleLog$: ",
"Observable",
"<{ message: string; level: string; }>; }>; find: (ctx: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => Promise<",
"FindService",
">; testSubjects: typeof ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.TestSubjects",
"text": "TestSubjects"
},
"; browser: (ctx: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => Promise<BrowserService>; toasts: typeof ",
"ToastsService",
"; }, {}, ProvidedTypeMap<{ retry: typeof ",
{
"pluginId": "@kbn/ftr-common-functional-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalServicesPluginApi",
"section": "def-common.RetryService",
"text": "RetryService"
},
"; es: ({ getService }: ",
{
"pluginId": "@kbn/ftr-common-functional-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => ",
"default",
"; kibanaServer: ({ getService }: ",
{
"pluginId": "@kbn/ftr-common-functional-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => ",
{
"pluginId": "@kbn/test",
"scope": "common",
"docId": "kibKbnTestPluginApi",
"section": "def-common.KbnClient",
"text": "KbnClient"
},
"; retryOnStale: ({ getService }: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => { <T>(fn: () => Promise<T>): Promise<T>; wrap<Args extends any[], Result>(fn: (...args: Args) => Promise<Result>): (...args: Args) => Promise<Result>; }; __webdriver__: ({ getService }: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => Promise<{ driver: ",
"WebDriver",
"; browserType: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.Browsers",
"text": "Browsers"
},
"; consoleLog$: ",
"Observable",
"<{ message: string; level: string; }>; }>; find: (ctx: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => Promise<",
"FindService",
">; testSubjects: typeof ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.TestSubjects",
"text": "TestSubjects"
},
"; browser: (ctx: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => Promise<BrowserService>; toasts: typeof ",
"ToastsService",
"; }>, ProvidedTypeMap<{}>>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/remote/remote.ts",
"deprecated": false,
"trackAdoption": false
}
]
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.services.find",
"type": "Function",
"tags": [],
"label": "find",
"description": [],
"signature": [
"(ctx: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => Promise<",
"FindService",
">"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/all.ts",
"deprecated": false,
"trackAdoption": false,
"returnComment": [],
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.services.find.$1",
"type": "Object",
"tags": [],
"label": "ctx",
"description": [],
"signature": [
{
"pluginId": "@kbn/test",
"scope": "common",
"docId": "kibKbnTestPluginApi",
"section": "def-common.GenericFtrProviderContext",
"text": "GenericFtrProviderContext"
},
"<{ retry: typeof ",
{
"pluginId": "@kbn/ftr-common-functional-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalServicesPluginApi",
"section": "def-common.RetryService",
"text": "RetryService"
},
"; es: ({ getService }: ",
{
"pluginId": "@kbn/ftr-common-functional-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => ",
"default",
"; kibanaServer: ({ getService }: ",
{
"pluginId": "@kbn/ftr-common-functional-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => ",
{
"pluginId": "@kbn/test",
"scope": "common",
"docId": "kibKbnTestPluginApi",
"section": "def-common.KbnClient",
"text": "KbnClient"
},
"; retryOnStale: ({ getService }: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => { <T>(fn: () => Promise<T>): Promise<T>; wrap<Args extends any[], Result>(fn: (...args: Args) => Promise<Result>): (...args: Args) => Promise<Result>; }; __webdriver__: ({ getService }: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => Promise<{ driver: ",
"WebDriver",
"; browserType: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.Browsers",
"text": "Browsers"
},
"; consoleLog$: ",
"Observable",
"<{ message: string; level: string; }>; }>; find: (ctx: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => Promise<",
"FindService",
">; testSubjects: typeof ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.TestSubjects",
"text": "TestSubjects"
},
"; browser: (ctx: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => Promise<BrowserService>; toasts: typeof ",
"ToastsService",
"; }, {}, ProvidedTypeMap<{ retry: typeof ",
{
"pluginId": "@kbn/ftr-common-functional-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalServicesPluginApi",
"section": "def-common.RetryService",
"text": "RetryService"
},
"; es: ({ getService }: ",
{
"pluginId": "@kbn/ftr-common-functional-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => ",
"default",
"; kibanaServer: ({ getService }: ",
{
"pluginId": "@kbn/ftr-common-functional-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => ",
{
"pluginId": "@kbn/test",
"scope": "common",
"docId": "kibKbnTestPluginApi",
"section": "def-common.KbnClient",
"text": "KbnClient"
},
"; retryOnStale: ({ getService }: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => { <T>(fn: () => Promise<T>): Promise<T>; wrap<Args extends any[], Result>(fn: (...args: Args) => Promise<Result>): (...args: Args) => Promise<Result>; }; __webdriver__: ({ getService }: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => Promise<{ driver: ",
"WebDriver",
"; browserType: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.Browsers",
"text": "Browsers"
},
"; consoleLog$: ",
"Observable",
"<{ message: string; level: string; }>; }>; find: (ctx: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => Promise<",
"FindService",
">; testSubjects: typeof ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.TestSubjects",
"text": "TestSubjects"
},
"; browser: (ctx: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => Promise<BrowserService>; toasts: typeof ",
"ToastsService",
"; }>, ProvidedTypeMap<{}>>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/find.ts",
"deprecated": false,
"trackAdoption": false
}
]
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.services.testSubjects",
"type": "Object",
"tags": [],
"label": "testSubjects",
"description": [],
"signature": [
"typeof ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.TestSubjects",
"text": "TestSubjects"
}
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/all.ts",
"deprecated": false,
"trackAdoption": false
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.services.browser",
"type": "Function",
"tags": [],
"label": "browser",
"description": [],
"signature": [
"(ctx: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => Promise<BrowserService>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/all.ts",
"deprecated": false,
"trackAdoption": false,
"returnComment": [],
"children": [
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.services.browser.$1",
"type": "Object",
"tags": [],
"label": "ctx",
"description": [],
"signature": [
{
"pluginId": "@kbn/test",
"scope": "common",
"docId": "kibKbnTestPluginApi",
"section": "def-common.GenericFtrProviderContext",
"text": "GenericFtrProviderContext"
},
"<{ retry: typeof ",
{
"pluginId": "@kbn/ftr-common-functional-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalServicesPluginApi",
"section": "def-common.RetryService",
"text": "RetryService"
},
"; es: ({ getService }: ",
{
"pluginId": "@kbn/ftr-common-functional-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => ",
"default",
"; kibanaServer: ({ getService }: ",
{
"pluginId": "@kbn/ftr-common-functional-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => ",
{
"pluginId": "@kbn/test",
"scope": "common",
"docId": "kibKbnTestPluginApi",
"section": "def-common.KbnClient",
"text": "KbnClient"
},
"; retryOnStale: ({ getService }: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => { <T>(fn: () => Promise<T>): Promise<T>; wrap<Args extends any[], Result>(fn: (...args: Args) => Promise<Result>): (...args: Args) => Promise<Result>; }; __webdriver__: ({ getService }: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => Promise<{ driver: ",
"WebDriver",
"; browserType: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.Browsers",
"text": "Browsers"
},
"; consoleLog$: ",
"Observable",
"<{ message: string; level: string; }>; }>; find: (ctx: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => Promise<",
"FindService",
">; testSubjects: typeof ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.TestSubjects",
"text": "TestSubjects"
},
"; browser: (ctx: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => Promise<BrowserService>; toasts: typeof ",
"ToastsService",
"; }, {}, ProvidedTypeMap<{ retry: typeof ",
{
"pluginId": "@kbn/ftr-common-functional-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalServicesPluginApi",
"section": "def-common.RetryService",
"text": "RetryService"
},
"; es: ({ getService }: ",
{
"pluginId": "@kbn/ftr-common-functional-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => ",
"default",
"; kibanaServer: ({ getService }: ",
{
"pluginId": "@kbn/ftr-common-functional-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => ",
{
"pluginId": "@kbn/test",
"scope": "common",
"docId": "kibKbnTestPluginApi",
"section": "def-common.KbnClient",
"text": "KbnClient"
},
"; retryOnStale: ({ getService }: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => { <T>(fn: () => Promise<T>): Promise<T>; wrap<Args extends any[], Result>(fn: (...args: Args) => Promise<Result>): (...args: Args) => Promise<Result>; }; __webdriver__: ({ getService }: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => Promise<{ driver: ",
"WebDriver",
"; browserType: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.Browsers",
"text": "Browsers"
},
"; consoleLog$: ",
"Observable",
"<{ message: string; level: string; }>; }>; find: (ctx: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => Promise<",
"FindService",
">; testSubjects: typeof ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.TestSubjects",
"text": "TestSubjects"
},
"; browser: (ctx: ",
{
"pluginId": "@kbn/ftr-common-functional-ui-services",
"scope": "common",
"docId": "kibKbnFtrCommonFunctionalUiServicesPluginApi",
"section": "def-common.FtrProviderContext",
"text": "FtrProviderContext"
},
") => Promise<BrowserService>; toasts: typeof ",
"ToastsService",
"; }>, ProvidedTypeMap<{}>>"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/browser.ts",
"deprecated": false,
"trackAdoption": false
}
]
},
{
"parentPluginId": "@kbn/ftr-common-functional-ui-services",
"id": "def-common.services.toasts",
"type": "Object",
"tags": [],
"label": "toasts",
"description": [],
"signature": [
"typeof ",
"ToastsService"
],
"path": "src/platform/packages/shared/kbn-ftr-common-functional-ui-services/services/all.ts",
"deprecated": false,
"trackAdoption": false
}
],
"initialIsOpen": false
}
]
}
}