@wix/design-system
Version:
@wix/design-system
43 lines (32 loc) • 1.14 kB
Markdown
## InputShell Testkit
### Import
- unidriver: `import { InputShellUniDriver } from '@wix/design-system/dist/testkit/unidriver';`
- vanilla: `import { InputShellTestkit } from '@wix/design-system/dist/testkit';`
- puppeteer: `import { InputShellTestkit } from '@wix/design-system/dist/testkit/puppeteer';`
- playwright: `import { InputShellTestkit } from '@wix/design-system/dist/testkit/playwright';`
### API
### exists
- signature: exists()
- returns: Promise<boolean>
- description: Checks whether the component found with the given data hook
### element
- signature: element()
- returns: Promise<any>
- description: Gets the component root element
### click
- signature: click()
- returns: Promise<void>
- description: Clicks on the component root element
### base
- signature: base()
- returns: UniDriver
- description: Returns UniDriver for the base element
### getTagName
- signature: getTagName()
- returns: Promise<string>
- description: Returns the tag name of the HTML element
### hasMenuArrow
- signature: hasMenuArrow()
- description: Returns true if dropdown arrow is displayed
### isDisabled
- signature: isDisabled()