mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
(core) Updating UI for Document Settings
Summary: Updating UI for Document Settings, by reusing components from Admin panel Test Plan: Existing Reviewers: georgegevoian Reviewed By: georgegevoian Differential Revision: https://phab.getgrist.com/D4250
This commit is contained in:
@@ -109,7 +109,7 @@ describe('WebhookOverflow', function () {
|
||||
|
||||
async function openWebhookPageWithoutWaitForServer() {
|
||||
await openDocumentSettings();
|
||||
const button = await driver.findContentWait('a', /Manage Webhooks/, 3000);
|
||||
const button = await driver.findContentWait('a', /Manage Webhooks/i, 3000);
|
||||
await gu.scrollIntoView(button).click();
|
||||
await waitForWebhookPage();
|
||||
}
|
||||
|
||||
@@ -281,9 +281,9 @@ async function getField(rowNum: number, col: string) {
|
||||
}
|
||||
|
||||
async function openWebhookPage() {
|
||||
await gu.wipeToasts();
|
||||
await gu.openDocumentSettings();
|
||||
const button = await driver.findContentWait('a', /Manage Webhooks/, 3000);
|
||||
await gu.scrollIntoView(button).click();
|
||||
await gu.scrollIntoView(driver.findContentWait('a', /Manage Webhooks/i, 3000)).click();
|
||||
await waitForWebhookPage();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user