import { Page } from "@playwright/test";

/**
 * Navigate to the recipes section
 */
export default async function goToRecipes(page: Page): Promise<void> {
  await page.getByRole("button", { name: "Рецепты" }).click();
}
