import { test, expect } from '@playwright/test'; test('Milchtankstelle', async ({ page }) => { await page.goto('https://www.facebook.com/people/Milchtankstelle-in-Oberwellenborn/100057319515068/'); await page.getByRole('button', {name: 'Decline optional cookies'}).click(); await page.getByRole('button', {name: 'Close'}).click(); let first = await page.$('xpath=//div[@aria-posinset="1"]'); let firstText = await first.innerHTML(); expect(firstText.includes('Endlich können wir Ihnen ab 23.12 .2023 10:00 Uhr wieder frische Milch anbieten.')).toBeTruthy(); });