В Playwright, как исправить ошибку locator.evaluateAll: Ошибка оценки: ReferenceError: _test не определен?

Я только начинаю работать с «Драматургом», поэтому не знаю, что-то мне не хватает. У меня нет другой среды тестирования, подключенной к нему. я использую @playwright/test v1.14.1.

Этот тест:

      import { test, expect } from "@playwright/test";

test("focus sets tab indexes appropriately", async ({ page }) => {
    await page.goto("http://localhost:3000/test");
    const inputs = page.locator("input");
    await expect(inputs).toHaveCount(5);
    await inputs.evaluateAll(async (nodes) => {
        console.log(nodes);
        for (const node of nodes) {
            console.log(node);
            await expect(node.tabIndex).toBe(0);
        }
    });
});

выдает следующую ошибку:

         locator.evaluateAll: Evaluation failed: ReferenceError: _test is not defined
        at eval (eval at evaluate (:3:1339), <anonymous>:6:7)
        at t.default.evaluate (<anonymous>:3:1362)
        at t.default.<anonymous> (<anonymous>:1:44)

       5 |      const inputs = page.locator("input");
       6 |      await expect(inputs).toHaveCount(5);
    >  7 |      await inputs.evaluateAll(async (nodes) => {
         |                   ^
       8 |              console.log(nodes);
       9 |              for (const node of nodes) {
      10 |                      console.log(node);

Если я удалю вызов expect, тест проходит, но console.log все равно не сработает.

1 ответ

Решение

input.evaluateAll выполняется внутри браузера, что является другим контекстом выполнения, в котором expect недоступен (Node.js против, например, Chromium).

Смотрите здесь: https://playwright.dev/docs/core-concepts/#execution-contexts-playwright-and-browser

Другие вопросы по тегам