Skip to content

Commit

Permalink
ロジック変更
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiroshiba committed Jan 3, 2025
1 parent ac4256b commit cdfe594
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion tests/e2e/browser/辞書ダイアログ.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,21 @@ import { getNewestQuasarDialog } from "../locators";

test.beforeEach(gotoHome);

/** 最後のテキスト欄にテキストを入力し、その読みを取得する */
/**
* 最後のテキスト欄にテキストを入力し、その読みを取得する。
* 確実に読みを反映させるために、一度空にしてから入力する。
*/
async function getYomi(page: Page, inputText: string): Promise<string> {
const audioCellInput = page.getByRole("textbox", { name: "行目" }).last();
const accentPhrase = page.locator(".accent-phrase");

// 空にする
await audioCellInput.click();
await audioCellInput.fill("");
await audioCellInput.press("Enter");
await expect(accentPhrase).not.toBeVisible();

// 入力する
await audioCellInput.click();
await audioCellInput.fill(inputText);
await audioCellInput.press("Enter");
Expand Down

0 comments on commit cdfe594

Please sign in to comment.