Welcome to Playwright (TS)
Playwright's TypeScript support is first-class, offering full type safety for your locators and assertions.
Your First TS Test
typescript
import { test, expect } from '@playwright/test';
test('has title', async ({ page }) => {
await page.goto('https://www.careerraah.com');
await expect(page).toHaveTitle(/Career/);
});