## AvatarGroup Testkit

### Import

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

### getVisibleAvatarsCount
- signature: getVisibleAvatarsCount()
- returns: Promise<number>
- description: Gets the number Of displayed Avatars

### getVisibleAvatarTextContentByIndex
- signature: getVisibleAvatarTextContentByIndex(index)
- returns: Promise<string>
- description: Gets the text content

### getMoreIndicatorContent
- signature: getMoreIndicatorContent()
- returns: Promise<string>
- description: Gets the moreIndicator content

### isMoreIndicatorExist
- signature: isMoreIndicatorExist()
- returns: Promise<boolean>
- description: Checks whether the moreIndicator exists
