Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Playwrightのテスト – 同じパスに対してのHTTPメソッド違いのモック ( fullfill ) が消滅・上書きされてしまう #3593

Open
YumaInaura opened this issue Apr 11, 2024 · 0 comments

Comments

@YumaInaura
Copy link
Owner

YumaInaura commented Apr 11, 2024

バージョン

  • playwright 1.43.0

概要

以下のように page.route 二回に分けて定義すると、最初のモック定義は失われてしまいそうだ

page.route('/path/to/', async (route) => {
   if (route.request().method() === 'PATCH') {
     await route.fulfill({
       json: { },
     })
   }
 })

page.route('/path/to/', async (route) => {
  if (route.request().method() === 'GET') {
     await route.fulfill({
       json: {},
     })
   }
 })

以下のように page.route の関数1回で複数メソッドに対しての定義を一気にする必要がありそうだ

page.route('/path/to/', async (route) => {
   if (route.request().method() === 'PATCH') {
     await route.fulfill({
       json: { },
     })
   } else if (route.request().method() === 'GET') {
     await route.fulfill({
       json: {},
     })
   }
 })

チャットメンバー募集

何か質問、悩み事、相談などあればLINEオープンチャットもご利用ください。

https://line.me/ti/g2/eEPltQ6Tzh3pYAZV8JXKZqc7PJ6L0rpm573dcQ

プロフィール・経歴

https://github.com/YumaInaura/YumaInaura

@YumaInaura YumaInaura changed the title Playwright – 同じパスに対してのHTTPメソッド違いのモック ( fullfill ) が上書きされてしまう Playwright – 同じパスに対してのHTTPメソッド違いのモック ( fullfill ) が消滅・上書きされてしまう Apr 11, 2024
@YumaInaura YumaInaura changed the title Playwright – 同じパスに対してのHTTPメソッド違いのモック ( fullfill ) が消滅・上書きされてしまう Playwrightのテスト – 同じパスに対してのHTTPメソッド違いのモック ( fullfill ) が消滅・上書きされてしまう Apr 11, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant