import { test, expect } from '@playwright/test';

test('Screen Recording', async ({ page }) => {
  console.log('Navigating to: https://example.com');
  await page.goto('https://example.com', { waitUntil: 'networkidle', timeout: 30000 });
  console.log('Page loaded successfully');
  await page.waitForTimeout(5000);
  console.log('Recording complete');
});