Playwrightでビジュアルリグレッションテストを試す

画像比較を出したHTMLレポートの例

Playwrightには .toHaveScreenshot() というメソッドが用意されていて、これを使うだけで画面の差分を検知できる。いわゆるビジュアルリグレッションテストを気軽にはじめられる。

画面差分を検知する

公式ドキュメント: Visual comparisons

.toHaveScreenshot() を使うと、1回目はエラーになる。なぜなら比較したい画像がまだないから。Playwrightだと正解となる画像をGolden Fileと読んでいる。かっこいい。

npx playwright test ./tests/visual-comparisons.spec.ts 

Running 1 test using 1 worker
  1) [Google Chrome] › visual-comparisons.spec.ts:4:5 › visual comparisons test ────────────────────

    Error: A snapshot doesn't exist at /Users/daipresents/Work/playwright/tests/visual-comparisons.spec.ts-snapshots/visual-comparisons-test-1-Google-Chrome-darwin.png, writing actual.

       7 |
       8 |   // Take a screenshot for visual comparisons.
    >  9 |   await expect(page).toHaveScreenshot();
         |   ^
      10 | });
      11 |

        at /Users/daipresents/Work/playwright/tests/visual-comparisons.spec.ts:9:3

    attachment #1: visual-comparisons-test-1-actual.png (image/png) ────────────────────────────────
    test-results/visual-comparisons-visual-comparisons-test-Google-Chrome/visual-comparisons-test-1-actual.png
    ────────────────────────────────────────────────────────────────────────────────────────────────

  1 failed
    [Google Chrome] › visual-comparisons.spec.ts:4:5 › visual comparisons test ─────────────────────

  Serving HTML report at http://localhost:9323. Press Ctrl+C to quit.

画面の差分を発生させ、2回目実行すると以下になる。

npx playwright test ./tests/visual-comparisons.spec.ts

Running 1 test using 1 worker
  1) [Google Chrome] › visual-comparisons.spec.ts:4:5 › visual comparisons test ─────────

    Error: Screenshot comparison failed:

      10183 pixels (ratio 0.02 of all image pixels) are different.

    Expected: /Users/daipresents/Work/playwright/tests/visual-comparisons.spec.ts-snapshots/visual-comparisons-test-1-Google-Chrome-darwin.png
    Received: /Users/daipresents/Work/playwright/test-results/visual-comparisons-visual-comparisons-test-Google-Chrome/visual-comparisons-test-1-actual.png
        Diff: /Users/daipresents/Work/playwright/test-results/visual-comparisons-visual-comparisons-test-Google-Chrome/visual-comparisons-test-1-diff.png

    Call log:
      - page._expectScreenshot with timeout 5000ms
      -   verifying given screenshot expectation
      - taking page screenshot
      -   disabled all CSS animations
      - waiting for fonts to load...
      - fonts loaded
      - 10183 pixels (ratio 0.02 of all image pixels) are different.
      - waiting 100ms before taking screenshot
      - taking page screenshot
      -   disabled all CSS animations
      - waiting for fonts to load...
      - fonts loaded
      - captured a stable screenshot
      - 10183 pixels (ratio 0.02 of all image pixels) are different.


       7 |
       8 |   // Take a screenshot for visual comparisons.
    >  9 |   await expect(page).toHaveScreenshot();
         |                      ^
      10 | });
      11 |

        at /Users/daipresents/Work/playwright/tests/visual-comparisons.spec.ts:9:22

    attachment #1: visual-comparisons-test-1-expected.png (image/png) ───────────────────
    tests/visual-comparisons.spec.ts-snapshots/visual-comparisons-test-1-Google-Chrome-darwin.png
    ─────────────────────────────────────────────────────────────────────────────────────

    attachment #2: visual-comparisons-test-1-actual.png (image/png) ─────────────────────
    test-results/visual-comparisons-visual-comparisons-test-Google-Chrome/visual-comparisons-test-1-actual.png
    ─────────────────────────────────────────────────────────────────────────────────────

    attachment #3: visual-comparisons-test-1-diff.png (image/png) ───────────────────────
    test-results/visual-comparisons-visual-comparisons-test-Google-Chrome/visual-comparisons-test-1-diff.png
    ─────────────────────────────────────────────────────────────────────────────────────

  1 failed
    [Google Chrome] › visual-comparisons.spec.ts:4:5 › visual comparisons test ──────────

  Serving HTML report at http://localhost:9323. Press Ctrl+C to quit.

画像は以下。

Expected(予想していた画面)
Actual(現在の画面)
Diff(差分の画像)

ブログのタイトル部分(旅と子育ての〜)は変えてないのですが、文字のにじみ方が差分になって赤くなっています。これはなんとか除外したい。

その下の記事タイトルはあきからに差分なので大きく赤くなっていることがわかります。

たしかにわかるけど、ちょっとわかりにくいかな。

コメントを残す

このサイトはスパムを低減するために Akismet を使っています。コメントデータの処理方法の詳細はこちらをご覧ください