@hreflang-checker/playwright
v1.0.0
Published
Check your hreflang implementation using playwright
Downloads
2
Readme
hreflang-checker
Easily check your hreflangs are valid using Playwright
Installation
npm install @hreflang-checker/playwright
// playwright.config.ts
import '@hreflang-checker/playwright';
Usage/Examples
test(`hreflang for https://myurl.com is valid`, async ({ page }) => {
await page.goto('https://myurl.com');
await expect(page).toHaveValidHreflangs();
});