From 0da4a764540bbd3829391b72e9c862dd640fe6ee Mon Sep 17 00:00:00 2001 From: Kentaro Ohkouchi Date: Thu, 21 Apr 2022 17:31:18 +0900 Subject: [PATCH] =?UTF-8?q?=E3=83=87=E3=83=90=E3=83=83=E3=82=B0=E7=94=A8?= =?UTF-8?q?=E3=81=AE=E3=82=B3=E3=83=BC=E3=83=89=E3=82=92=E5=89=8A=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- e2e-tests/test/admin/total/total.test.ts | 4 ---- e2e-tests/test/front_guest/shopping.test.ts | 1 - e2e-tests/test/front_login/contact.test.ts | 1 - e2e-tests/test/front_login/shopping/shopping_deliv.test.ts | 2 +- 4 files changed, 1 insertion(+), 7 deletions(-) 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();