yandex.ru
"home-link"
const { test, expect } = require('@playwright/test')
test('basic test', async ({ page }) => {
await page.goto('https://yandex.ru')
const elements = page.$$('.home-link')
const href = await page.evaluate(() => document.querySelectorAll('.home-link'));
console.log(elements)
});