Playwright

Playwrightでクリップボードを使う機能のテスト

クリップボードに文字列をコピーするボタンを Playwright でテストする方法をメモ。grantPermissions でクリップボードの読み書きを許可しておくのがミソ。 import { test, expect, Page } from "@playwright/test"; test("アクセスキーをコピーできる", asy…

PlaywrightでMUIのDialogをテストする

Playwright で MUI の Dialog コンポーネントをテストするのに手間取ったのでメモ。 import { Button, Dialog, DialogTitle, DialogContent, DialogActions, DialogContentText, } from "@mui/material"; import { test, expect } from "@playwright/experim…