Initial MCP setup code

This commit is contained in:
Bikram Choudhury
2026-01-15 17:24:46 +05:30
parent 375ec350dc
commit 79b55ffd54
23 changed files with 1591 additions and 22 deletions

View File

@@ -701,6 +701,7 @@ export class ContainerCopy {
static async open(page: Page, testAccount: TestAccount, iframeSrc?: string): Promise<ContainerCopy> {
const url = await getTestExplorerUrl(testAccount, { iframeSrc, enablecontainercopy: true });
// console.log(`Navigating to URL: ${url}`);
await page.goto(url);
return ContainerCopy.waitForContainerCopy(page);
}