diff --git a/packages/smarthr-ui/src/components/ComboBox/VRTMultiCombobox.stories.tsx b/packages/smarthr-ui/src/components/ComboBox/VRTMultiCombobox.stories.tsx index cb3ee9f99c..def6853a2a 100644 --- a/packages/smarthr-ui/src/components/ComboBox/VRTMultiCombobox.stories.tsx +++ b/packages/smarthr-ui/src/components/ComboBox/VRTMultiCombobox.stories.tsx @@ -44,6 +44,8 @@ const playMulti = async ({ canvasElement }: { canvasElement: HTMLElement }) => { const option2 = await within(body).findByText('option 2') await userEvent.click(option2) await waitForRAF() + const helpMessage = await within(body).findAllByText('入力でフィルタリングできます。') + await userEvent.click(helpMessage[0]) // カーソルの点滅によるVRTのフレーキーを避けるためにフォーカスを移動する } VRTMultiCombobox.play = playMulti