## CheckToggle Testkit

### Import

- unidriver: `import { CheckToggleUniDriver } from '@wix/design-system/dist/testkit/unidriver';`
- vanilla: `import { CheckToggleTestkit } from '@wix/design-system/dist/testkit';`
- puppeteer: `import { CheckToggleTestkit } from '@wix/design-system/dist/testkit/puppeteer';`
- playwright: `import { CheckToggleTestkit } 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

### isChecked
- signature: isChecked()
- description: Checks whether CheckToggle is checked

### click
- signature: click()
- description: Clicks on the element

### getTooltipContent
- signature: getTooltipContent()
- description: Gets the tooltip content, throws an error if content is not provided.
