## Minimal example

```typescript
import { Wopee } from '@autonomous-testing/wopee.pw';
import { test } from '@playwright/test';

test.describe('test', () => {
  let wopee: Wopee;
  test.beforeAll(async () => {
    wopee = new Wopee();
    await wopee.startSuite('suite name');
  });

  test.afterEach(async () => {
    await wopee.stopScenario();
  });

  test('test', async ({ page }) => {
    await page.goto('https://playwright.dev/');

    const screenshot = await page.screenshot();
    const imageBase64 = screenshot.toString('base64');
    await wopee.trackImage({ stepName: 'image', scenarioName: 'test', imageBase64: imageBase64 });
  });
});
```
