You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

9 rivejä
278 B

  1. import { test, expect } from '@playwright/test';
  2. // See here how to get started:
  3. // https://playwright.dev/docs/intro
  4. test('visits the app root url', async ({ page }) => {
  5. await page.goto('/');
  6. await expect(page.locator('div.greetings > h1')).toHaveText('You did it!');
  7. })