feat: include pagination in ListStep

This commit is contained in:
karishmas6
2024-09-06 09:22:15 +05:30
parent 6d6b37f1b6
commit a24e45412e

View File

@@ -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;