diff --git a/scripts/playwright/pages/Dashboard/ExpandedForm/index.ts b/scripts/playwright/pages/Dashboard/ExpandedForm/index.ts index c189b9cdba..a5862fd42b 100644 --- a/scripts/playwright/pages/Dashboard/ExpandedForm/index.ts +++ b/scripts/playwright/pages/Dashboard/ExpandedForm/index.ts @@ -1,8 +1,6 @@ -// playwright-dev-page.ts import { expect, Locator } from '@playwright/test'; import BasePage from '../../Base'; import { DashboardPage } from '..'; -// import clipboard from "clipboardy"; export class ExpandedFormPage extends BasePage { readonly dashboard: DashboardPage; @@ -88,13 +86,6 @@ export class ExpandedFormPage extends BasePage { await this.get().locator('button:has-text("Cancel")').last().click(); } - // async getClipboardText() { - // const clipboard = (await import("clipboardy")).default; - // let clipText = await clipboard.read(); - // console.log(clipText); - // return clipText; - // } - async openChildCard(param: { column: string; title: string }) { const childList = await this.get().locator(`[pw-data="nc-expand-col-${param.column}"]`); await childList.locator(`.ant-card:has-text("${param.title}")`).click(); diff --git a/scripts/playwright/pages/Dashboard/Form/index.ts b/scripts/playwright/pages/Dashboard/Form/index.ts index 1208451c58..17a1d2d57c 100644 --- a/scripts/playwright/pages/Dashboard/Form/index.ts +++ b/scripts/playwright/pages/Dashboard/Form/index.ts @@ -1,4 +1,3 @@ -// playwright-dev-page.ts import { expect, Locator } from '@playwright/test'; import { DashboardPage } from '..'; import BasePage from '../../Base'; diff --git a/scripts/playwright/pages/Dashboard/Gallery/index.ts b/scripts/playwright/pages/Dashboard/Gallery/index.ts index 2ddefe546d..98a53c606c 100644 --- a/scripts/playwright/pages/Dashboard/Gallery/index.ts +++ b/scripts/playwright/pages/Dashboard/Gallery/index.ts @@ -1,5 +1,3 @@ -// playwright-dev-page.ts -import { expect, Locator } from '@playwright/test'; import { DashboardPage } from '..'; import BasePage from '../../Base'; import { ToolbarPage } from '../common/Toolbar'; diff --git a/scripts/playwright/pages/Dashboard/Grid/index.ts b/scripts/playwright/pages/Dashboard/Grid/index.ts index c39b22543e..88594fbca4 100644 --- a/scripts/playwright/pages/Dashboard/Grid/index.ts +++ b/scripts/playwright/pages/Dashboard/Grid/index.ts @@ -1,4 +1,3 @@ -// playwright-dev-page.ts import { expect, Locator } from '@playwright/test'; import { DashboardPage } from '..'; import BasePage from '../../Base'; diff --git a/scripts/playwright/pages/Dashboard/Import/Airtable.ts b/scripts/playwright/pages/Dashboard/Import/Airtable.ts index 45b4096b5c..1db3bb4be8 100644 --- a/scripts/playwright/pages/Dashboard/Import/Airtable.ts +++ b/scripts/playwright/pages/Dashboard/Import/Airtable.ts @@ -1,5 +1,4 @@ -// playwright-dev-page.ts -import { expect, Locator } from '@playwright/test'; +import { Locator } from '@playwright/test'; import BasePage from '../../Base'; import { DashboardPage } from '..'; diff --git a/scripts/playwright/pages/Dashboard/Import/ImportTemplate.ts b/scripts/playwright/pages/Dashboard/Import/ImportTemplate.ts index 04a2397f8c..8021060f46 100644 --- a/scripts/playwright/pages/Dashboard/Import/ImportTemplate.ts +++ b/scripts/playwright/pages/Dashboard/Import/ImportTemplate.ts @@ -1,4 +1,3 @@ -// playwright-dev-page.ts import { expect, Locator } from '@playwright/test'; import BasePage from '../../Base'; import { DashboardPage } from '..'; diff --git a/scripts/playwright/pages/Dashboard/Kanban/index.ts b/scripts/playwright/pages/Dashboard/Kanban/index.ts index 89827f3df0..5632ea584a 100644 --- a/scripts/playwright/pages/Dashboard/Kanban/index.ts +++ b/scripts/playwright/pages/Dashboard/Kanban/index.ts @@ -1,5 +1,4 @@ -// playwright-dev-page.ts -import { expect, Locator } from '@playwright/test'; +import { expect } from '@playwright/test'; import { DashboardPage } from '..'; import BasePage from '../../Base'; import { ToolbarPage } from '../common/Toolbar'; diff --git a/scripts/playwright/pages/Dashboard/SurveyForm/index.ts b/scripts/playwright/pages/Dashboard/SurveyForm/index.ts index beea957bda..87aa73123f 100644 --- a/scripts/playwright/pages/Dashboard/SurveyForm/index.ts +++ b/scripts/playwright/pages/Dashboard/SurveyForm/index.ts @@ -1,4 +1,3 @@ -// playwright-dev-page.ts import { expect, Locator, Page } from '@playwright/test'; import BasePage from '../../Base'; diff --git a/scripts/playwright/pages/Dashboard/WebhookForm/index.ts b/scripts/playwright/pages/Dashboard/WebhookForm/index.ts index aecb943f8d..ad1269d6d3 100644 --- a/scripts/playwright/pages/Dashboard/WebhookForm/index.ts +++ b/scripts/playwright/pages/Dashboard/WebhookForm/index.ts @@ -1,9 +1,7 @@ -// playwright-dev-page.ts import { expect, Locator } from '@playwright/test'; import BasePage from '../../Base'; import { DashboardPage } from '..'; import { ToolbarPage } from '../common/Toolbar'; -// import clipboard from "clipboardy"; export class WebhookFormPage extends BasePage { readonly dashboard: DashboardPage; diff --git a/scripts/playwright/pages/Dashboard/index.ts b/scripts/playwright/pages/Dashboard/index.ts index 4b787a0a5d..918b28d211 100644 --- a/scripts/playwright/pages/Dashboard/index.ts +++ b/scripts/playwright/pages/Dashboard/index.ts @@ -1,4 +1,3 @@ -// playwright-dev-page.ts import { expect, Locator, Page } from '@playwright/test'; import BasePage from '../Base'; import { GridPage } from './Grid'; diff --git a/scripts/playwright/pages/LoginPage/index.ts b/scripts/playwright/pages/LoginPage/index.ts index bbcd3cde71..67aef56778 100644 --- a/scripts/playwright/pages/LoginPage/index.ts +++ b/scripts/playwright/pages/LoginPage/index.ts @@ -1,4 +1,3 @@ -// playwright-dev-page.ts import { expect, Page } from '@playwright/test'; import BasePage from '../Base'; diff --git a/scripts/playwright/pages/ProjectsPage/index.ts b/scripts/playwright/pages/ProjectsPage/index.ts index 16f8b7cde0..1e8043746f 100644 --- a/scripts/playwright/pages/ProjectsPage/index.ts +++ b/scripts/playwright/pages/ProjectsPage/index.ts @@ -1,4 +1,3 @@ -// playwright-dev-page.ts import { expect, Page } from '@playwright/test'; import BasePage from '../Base'; import { DashboardPage } from '../Dashboard'; diff --git a/scripts/playwright/pages/SharedForm/index.ts b/scripts/playwright/pages/SharedForm/index.ts index af008662a4..f1987769d5 100644 --- a/scripts/playwright/pages/SharedForm/index.ts +++ b/scripts/playwright/pages/SharedForm/index.ts @@ -1,5 +1,4 @@ -// playwright-dev-page.ts -import { expect, Locator, Page } from '@playwright/test'; +import { expect, Page } from '@playwright/test'; import BasePage from '../Base'; import { CellPageObject } from '../Dashboard/common/Cell'; diff --git a/scripts/playwright/pages/SignupPage/index.ts b/scripts/playwright/pages/SignupPage/index.ts index e1c85a4363..95416f7725 100644 --- a/scripts/playwright/pages/SignupPage/index.ts +++ b/scripts/playwright/pages/SignupPage/index.ts @@ -1,5 +1,4 @@ -// playwright-dev-page.ts -import { expect, Page } from '@playwright/test'; +import { Page } from '@playwright/test'; import BasePage from '../Base'; import { ProjectsPage } from '../ProjectsPage';