Browse Source

fix : check test case for webhook

pull/7181/head
musharaf-nocodb 10 months ago
parent
commit
bbb3cc344e
  1. 12
      tests/playwright/pages/Dashboard/WebhookForm/index.ts

12
tests/playwright/pages/Dashboard/WebhookForm/index.ts

@ -154,19 +154,15 @@ export class WebhookFormPage extends BasePage {
await this.rootPage.waitForTimeout(500); await this.rootPage.waitForTimeout(500);
// kludge, as the dropdown is not visible even after scroll into view // kludge, as the dropdown is not visible even after scroll into view
await this.rootPage.locator('.ant-select-dropdown:visible').hover(); await this.rootPage.locator('.ant-select-dropdown').hover();
await this.rootPage await this.rootPage.locator('.ant-select-dropdown').locator(`.ant-select-item`).last().scrollIntoViewIfNeeded();
.locator('.ant-select-dropdown:visible')
.locator(`.ant-select-item`)
.last()
.scrollIntoViewIfNeeded();
await this.rootPage await this.rootPage
.locator('.ant-select-dropdown:visible') .locator('.ant-select-dropdown')
.locator(`.ant-select-item:has-text("${key}")`) .locator(`.ant-select-item:has-text("${key}")`)
.scrollIntoViewIfNeeded(); .scrollIntoViewIfNeeded();
await this.rootPage await this.rootPage
.locator('.ant-select-dropdown:visible') .locator('.ant-select-dropdown')
.locator(`.ant-select-item:has-text("${key}")`) .locator(`.ant-select-item:has-text("${key}")`)
.click({ force: true }); .click({ force: true });

Loading…
Cancel
Save