Browse Source

test(nc-gui): pw test fail issue

pull/7786/head
Ramesh Mane 7 months ago
parent
commit
d07ed1638e
  1. 10
      tests/playwright/pages/Dashboard/Form/index.ts

10
tests/playwright/pages/Dashboard/Form/index.ts

@ -116,10 +116,7 @@ export class FormPage extends BasePage {
await src.dragTo(dst);
} else if (mode === 'hideField') {
// in form-v2, hide field will be using right sidebar
await this.formFields
.locator(`[data-testid="nc-form-field-item-${window.CSS.escape(field)}"]`)
.locator('.nc-switch')
.click();
await this.formFields.locator(`[data-testid="nc-form-field-item-${field}"]`).locator('.nc-switch').click();
}
}
@ -135,10 +132,7 @@ export class FormPage extends BasePage {
await src.dragTo(dst, { trial: true });
await src.dragTo(dst);
} else if (mode === 'clickField') {
await this.formFields
.locator(`[data-testid="nc-form-field-item-${window.CSS.escape(field)}"]`)
.locator('.nc-switch')
.click();
await this.formFields.locator(`[data-testid="nc-form-field-item-${field}"]`).locator('.nc-switch').click();
}
}

Loading…
Cancel
Save