Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 
 

9 rader
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. })