From a24e45412e947e9c500b6fe736a092b74e63e960 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Fri, 6 Sep 2024 09:22:15 +0530 Subject: [PATCH] feat: include pagination in ListStep --- src/context/browserSteps.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/context/browserSteps.tsx b/src/context/browserSteps.tsx index d09da443..a42abfa0 100644 --- a/src/context/browserSteps.tsx +++ b/src/context/browserSteps.tsx @@ -19,6 +19,10 @@ export interface ListStep { type: 'list'; listSelector: string; fields: { [key: string]: TextStep }; + pagination?: { + type: string; + selector: string; + } } type BrowserStep = TextStep | ScreenshotStep | ListStep;