Fix prettier formatting issues

This commit is contained in:
adilallo
2025-08-30 13:46:35 -06:00
parent 1e795e1340
commit 12deae75e8
97 changed files with 335281 additions and 54857 deletions
+2 -2
View File
@@ -2,7 +2,7 @@ import { Locator, Page } from "@playwright/test";
export async function findVisibleButton(
page: Page,
text: string
text: string,
): Promise<Locator> {
const buttons = page.locator(`button:has-text("${text}")`);
const buttonCount = await buttons.count();
@@ -19,7 +19,7 @@ export async function findVisibleButton(
export async function findVisibleElement(
page: Page,
selector: string
selector: string,
): Promise<Locator> {
const elements = page.locator(selector);
const elementCount = await elements.count();