您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

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