-
Notifications
You must be signed in to change notification settings - Fork 310
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
書き出しファイル名パターンのe2eテストを追加 #1488
The head ref may contain hidden characters: "\u66F8\u304D\u51FA\u3057\u30D5\u30A1\u30A4\u30EB\u540D\u30D1\u30BF\u30FC\u30F3\u306Ee2e\u30C6\u30B9\u30C8\u3092\u8FFD\u52A0"
書き出しファイル名パターンのe2eテストを追加 #1488
Conversation
以下のパターンも欲しいかな、と思いました、一応コメントまで…
|
なるほどです。遷移が不要なので本来はコンポーネント単位のテストのが適切そうですが、無いのでここに書いときますか! |
await page.getByText("ツールバーのカスタマイズ").click(); | ||
await getQuasarMenu(page, "ツールバーのカスタマイズ").click(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
メニューの内容は結構同じ案内があって一意に定まりにくいので専用関数を作ってみました。
await page | ||
.locator("#q-portal--dialog--6") | ||
await getNewestQuasarDialog(page) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ダイアログは開いた順番?で最後のindexが変わるので頑健に
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
問題ないと思うのでマージします!
@stmtk1 (ただの共有です)
tests/e2e/locators.ts
というファイルを作って、そこにロケーター周りの便利関数を置いてみました。
もしよかったらどうぞ!!
} | ||
|
||
/** | ||
* quasarのメニューのlocaltorを取得する |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
あっ、Typoしてますね(時すでに遅し)
内容
書き出しファイル名パターンのテストを追加します。
連番がパターンに含まれていないとボタンが押せないとか、保存したら内容が表示されるとかをテストしています。
関連 Issue
スクリーンショット・動画など
その他