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

test('test', async ({ page }) => {
  await page.goto('http://localhost:3000/login');
  await page.getByRole('textbox', { name: 'Email Address' }).click();
  await page.getByRole('textbox', { name: 'Email Address' }).fill('office@solactivy.com');
  await page.getByRole('textbox', { name: 'Password' }).fill('Hiphop77');
  await page.getByRole('button', { name: 'Sign In' }).click();
  await page.getByRole('button', { name: 'office@solactivy.com office@' }).click();
  await page.getByRole('button', { name: 'Profile' }).click();
  await page.getByRole('button', { name: 'Business' }).click();
  await page.getByRole('button', { name: 'Preferences' }).click();
  await page.getByRole('banner').getByRole('button').filter({ hasText: /^$/ }).first().click();
});