0

次のスニペットを実行しようとしています

const { it, expect } = require('@playwright/test');
 
it('is a basic test with the page', async ({ page }) => {
  await page.goto('https://playwright.dev/');
  const home = await page.waitForSelector('home-navigation');
  expect(await home.innerText()).toBe(' Playwright');
});

しかし、次のエラーが発生します:

TypeError: test_runner_1.fixtures.defineParameter is not a function

私のrequireステートメントを指して、 npm i -D @playwright/test @playwright/test-runner を実行し、モジュールを存在させました。なぜこれが失敗するのでしょうか?ノード「filename.js」で実行しようとしています

4

1 に答える 1