Skip to content

Commit

Permalink
test: 「書き出しファイル名パターン」のe2eテストが落ちるのを修正 (VOICEVOX#1586)
Browse files Browse the repository at this point in the history
  • Loading branch information
thiramisu authored Sep 25, 2023
1 parent 389152e commit a9144ea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ test("「オプション」から「書き出しファイル名パターン」
await page.getByRole("button", { name: "$連番$" }).click();
await expect(textbox).toHaveValue("test$連番$");
await expect(doneButton).toBeEnabled();
await page.waitForTimeout(100);

// 確定するとダイアログが閉じて設定した内容が反映されている
await doneButton.click();
Expand Down
4 changes: 2 additions & 2 deletions tests/e2e/locators.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import { Page } from "@playwright/test";

/**
* 最新のquasarダイアログのlocaltorを取得する
* 最新のquasarダイアログのlocatorを取得する
*/
export function getNewestQuasarDialog(page: Page) {
const locator = page.locator('[id^="q-portal--dialog"]');
return locator.last();
}

/**
* quasarのメニューのlocaltorを取得する
* quasarのメニューのlocatorを取得する
*/
export function getQuasarMenu(page: Page, menuName: string) {
return page.getByRole("listitem").filter({ hasText: menuName });
Expand Down

0 comments on commit a9144ea

Please sign in to comment.