3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Playwright で外部サービスにリクエストが飛ばないようにする

Posted at

概要

Playwright を用いて本番環境やステージング環境に対して E2E テストを実行する際に、 SentryKarte といった、分析などのための外部サービスにリクエストを送らないようにしたい。

対応方法

Page インスタンスを生成したら以下の関数でモックする。

import { Page } from "@playwright/test";

export async function setupRequestMock(page: Page) {
  const mockUrlList = [
    'https://*.karte.io/**',
    'https://*.intercom.io/**',
    'https://*.sentry.io/**',
    'https://*.newrelic.com/**',
  ]
  for (const url of mockUrlList) {
    await page.route(url, async (route, request) => {
      console.log(`prevent request to ${request.url()}`)
      await route.fulfill()
    })
  }
}

fulfill() にすることでリクエストは成功するけど空のレスポンスを返すように。

abort() にすることでリクエスト自体無効になるけど、リクエスト失敗扱いでコンソールエラーが表示されるのが気になった。

バージョン情報

  • playwright 1.39.0

参考

3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?