2
0
Files
bot/apps/builder/playwright/services/selectorUtils.ts

8 lines
257 B
TypeScript
Raw Normal View History

import { Page } from '@playwright/test'
export const deleteButtonInConfirmDialog = (page: Page) =>
page.locator('section[role="alertdialog"] button:has-text("Delete")')
export const typebotViewer = (page: Page) =>
page.frameLocator('#typebot-iframe')