🖥

Playwright で window.alert ( メッセージ ダイアログ )をのメッセージ内容を検証する

2024/07/02に公開

Expect message and comfirm dialog

Good

  page.on('dialog', async (dialog) => {
    expect(dialog.message()).toContain('Expected Message')
    await dialog.accept()
  })

BAD

No Async / Await

  page.on('dialog', (dialog) => {
    expect(dialog.message()).toContain('Expected Message')
    dialog.accept()
  })

Ref

https://playwright.dev/docs/dialogs

公開日時

2024-06-03

Discussion