選択できるのは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. })