import { Locator, Page } from '@playwright/test';

export default class Alerts{
	readonly successAlert: Locator;
	readonly disabledAlert: Locator;

	constructor(public page: Page) {
		this.successAlert = page.getByRole('heading', { name: 'Proceso satisfactorio' });
		this.disabledAlert = page.getByRole('heading', { name: 'Desactivar' });
	}
}
