48 lines
2.0 KiB
TypeScript
48 lines
2.0 KiB
TypeScript
jest.setTimeout(300000);
|
|
|
|
describe("Self Serve", () => {
|
|
it("Launch Self Serve Example", async () => {
|
|
try {
|
|
await page.goto("https://localhost:1234/testExplorer.html?iframeSrc=selfServe.html");
|
|
const handle = await page.waitForSelector("iframe");
|
|
const frame = await handle.contentFrame();
|
|
|
|
// wait for refresh RP call to end
|
|
await frame.waitFor(10000);
|
|
|
|
// id of the display element is in the format {PROPERTY_NAME}-{DISPLAY_NAME}-{DISPLAY_TYPE}
|
|
await frame.waitForSelector("#description-text-display");
|
|
|
|
const regions = await frame.waitForSelector("#regions-dropdown-input");
|
|
|
|
const currentRegionsDescription = await frame.$$("#currentRegionText-text-display");
|
|
expect(currentRegionsDescription).toHaveLength(0);
|
|
let disabledLoggingToggle = await frame.$$("#enableLogging-toggle-input[disabled]");
|
|
expect(disabledLoggingToggle).toHaveLength(0);
|
|
|
|
await regions.click();
|
|
const regionsDropdownElement1 = await frame.waitForSelector("#regions-dropdown-input-list0");
|
|
await regionsDropdownElement1.click();
|
|
|
|
await frame.waitForSelector("#currentRegionText-text-display");
|
|
disabledLoggingToggle = await frame.$$("#enableLogging-toggle-input[disabled]");
|
|
expect(disabledLoggingToggle).toHaveLength(1);
|
|
|
|
await frame.waitForSelector("#accountName-textField-input");
|
|
|
|
const enableDbLevelThroughput = await frame.waitForSelector("#enableDbLevelThroughput-toggle-input");
|
|
const dbThroughput = await frame.$$("#dbThroughput-slider-input");
|
|
expect(dbThroughput).toHaveLength(0);
|
|
await enableDbLevelThroughput.click();
|
|
await frame.waitForSelector("#dbThroughput-slider-input");
|
|
|
|
await frame.waitForSelector("#collectionThroughput-spinner-input");
|
|
} catch (error) {
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
const testName = (expect as any).getState().currentTestName;
|
|
await page.screenshot({ path: `Test Failed ${testName}.jpg` });
|
|
throw error;
|
|
}
|
|
});
|
|
});
|