diff --git a/e2e-tests/test/admin/total/total.test.ts b/e2e-tests/test/admin/total/total.test.ts index b41b36604e..1d9496f82e 100644 --- a/e2e-tests/test/admin/total/total.test.ts +++ b/e2e-tests/test/admin/total/total.test.ts @@ -122,7 +122,6 @@ test.describe.serial('売上集計画面を確認をします', () => { }); test('月度集計の確認をします', async () => { - await page.pause(); await page.goto(url); await page.goto(`${url}?page=${method}`); await page.click('text=月度で集計する'); @@ -183,7 +182,6 @@ test.describe.serial('売上集計画面を確認をします', () => { }); test('月度集計の確認をします', async () => { - await page.pause(); await page.goto(url); await page.goto(`${url}?page=${method}`); await page.click('text=月度で集計する'); @@ -244,7 +242,6 @@ test.describe.serial('売上集計画面を確認をします', () => { }); test('月度集計の確認をします', async () => { - await page.pause(); await page.goto(url); await page.goto(`${url}?page=${method}`); await page.click('text=月度で集計する'); @@ -289,7 +286,6 @@ test.describe.serial('売上集計画面を確認をします', () => { }); test('月度集計の確認をします', async () => { - await page.pause(); await page.goto(url); await page.goto(`${url}?page=${method}`); await page.click('text=月度で集計する'); diff --git a/e2e-tests/test/front_guest/shopping.test.ts b/e2e-tests/test/front_guest/shopping.test.ts index cc37bd536a..e768b3cbdd 100644 --- a/e2e-tests/test/front_guest/shopping.test.ts +++ b/e2e-tests/test/front_guest/shopping.test.ts @@ -103,7 +103,6 @@ test.describe.serial('購入フロー(ゲスト)のテストをします', () => }); test('お支払い方法・お届け時間の指定をします', async () => { - await page.pause(); await page.click('text=代金引換'); await page.selectOption('select[name=deliv_date1]', { index: 2 }); await page.selectOption('select[name=deliv_time_id1]', { label: '午後' }); diff --git a/e2e-tests/test/front_login/contact.test.ts b/e2e-tests/test/front_login/contact.test.ts index 3ca949b9db..ea45f70720 100644 --- a/e2e-tests/test/front_login/contact.test.ts +++ b/e2e-tests/test/front_login/contact.test.ts @@ -142,7 +142,6 @@ test.describe.serial('お問い合わせページのテストをします', () = await page.goto(PlaywrightConfig.use.baseURL); // ログアウトしてしまう場合があるので一旦トップへ遷移する await page.goto(url); await page.click('input[name=confirm]'); - await page.pause(); await expect(page.locator('span.attention >> nth=13')).toContainText('※ お問い合わせ内容が入力されていません。'); await expect(page.locator('textarea[name=contents]')).toHaveAttribute('style', 'background-color:#ffe8e8; ime-mode: active;'); }); diff --git a/e2e-tests/test/front_login/shopping/shopping_deliv.test.ts b/e2e-tests/test/front_login/shopping/shopping_deliv.test.ts index dbc8a81f33..de0ccbbf31 100644 --- a/e2e-tests/test/front_login/shopping/shopping_deliv.test.ts +++ b/e2e-tests/test/front_login/shopping/shopping_deliv.test.ts @@ -1,5 +1,5 @@ import PlaywrightConfig from '../../../../playwright.config'; -import { ZapClient, ContextType, Risk, HttpMessage } from '../../../utils/ZapClient'; +import { ZapClient, ContextType, Risk } from '../../../utils/ZapClient'; import { intervalRepeater } from '../../../utils/Progress'; const zapClient = new ZapClient();