mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-04-08 03:00:28 -04:00
Comment out build.spec.ts test file
This commit is contained in:
@@ -1,304 +1,304 @@
|
||||
// Note: all the comments with //(number)! are for the docs
|
||||
//ignore them when reading the code, but if you change something,
|
||||
//make sure to update the docs! Your autoformmater will break this page,
|
||||
// so don't run it on this file.
|
||||
// --8<-- [start:BuildPageExample]
|
||||
import { test } from "./fixtures";
|
||||
import { BuildPage } from "./pages/build.page";
|
||||
// // Note: all the comments with //(number)! are for the docs
|
||||
// //ignore them when reading the code, but if you change something,
|
||||
// //make sure to update the docs! Your autoformmater will break this page,
|
||||
// // so don't run it on this file.
|
||||
// // --8<-- [start:BuildPageExample]
|
||||
// import { test } from "./fixtures";
|
||||
// import { BuildPage } from "./pages/build.page";
|
||||
|
||||
// Reason Ignore: admonishment is in the wrong place visually with correct prettier rules
|
||||
// prettier-ignore
|
||||
test.describe("Build", () => { //(1)!
|
||||
let buildPage: BuildPage; //(2)!
|
||||
// // Reason Ignore: admonishment is in the wrong place visually with correct prettier rules
|
||||
// // prettier-ignore
|
||||
// test.describe("Build", () => { //(1)!
|
||||
// let buildPage: BuildPage; //(2)!
|
||||
|
||||
// Reason Ignore: admonishment is in the wrong place visually with correct prettier rules
|
||||
// prettier-ignore
|
||||
test.beforeEach(async ({ page, loginPage, testUser }, testInfo) => { //(3)! ts-ignore
|
||||
buildPage = new BuildPage(page);
|
||||
// // Reason Ignore: admonishment is in the wrong place visually with correct prettier rules
|
||||
// // prettier-ignore
|
||||
// test.beforeEach(async ({ page, loginPage, testUser }, testInfo) => { //(3)! ts-ignore
|
||||
// buildPage = new BuildPage(page);
|
||||
|
||||
// Start each test with login using worker auth
|
||||
await page.goto("/login"); //(4)!
|
||||
await loginPage.login(testUser.email, testUser.password);
|
||||
await test.expect(page).toHaveURL("/marketplace"); //(5)!
|
||||
await buildPage.navbar.clickBuildLink();
|
||||
});
|
||||
// // Start each test with login using worker auth
|
||||
// await page.goto("/login"); //(4)!
|
||||
// await loginPage.login(testUser.email, testUser.password);
|
||||
// await test.expect(page).toHaveURL("/marketplace"); //(5)!
|
||||
// await buildPage.navbar.clickBuildLink();
|
||||
// });
|
||||
|
||||
// Reason Ignore: admonishment is in the wrong place visually with correct prettier rules
|
||||
// prettier-ignore
|
||||
test("user can add a block", async ({ page }) => { //(6)!
|
||||
// workaround for #8788
|
||||
await buildPage.navbar.clickBuildLink();
|
||||
await test.expect(page).toHaveURL(new RegExp("/build"));
|
||||
await buildPage.waitForPageLoad();
|
||||
await test.expect(buildPage.isLoaded()).resolves.toBeTruthy(); //(7)!
|
||||
// // Reason Ignore: admonishment is in the wrong place visually with correct prettier rules
|
||||
// // prettier-ignore
|
||||
// test("user can add a block", async ({ page }) => { //(6)!
|
||||
// // workaround for #8788
|
||||
// await buildPage.navbar.clickBuildLink();
|
||||
// await test.expect(page).toHaveURL(new RegExp("/build"));
|
||||
// await buildPage.waitForPageLoad();
|
||||
// await test.expect(buildPage.isLoaded()).resolves.toBeTruthy(); //(7)!
|
||||
|
||||
await buildPage.closeTutorial(); //(9)!
|
||||
await buildPage.openBlocksPanel(); //(10)!
|
||||
const block = await buildPage.getDictionaryBlockDetails();
|
||||
// await buildPage.closeTutorial(); //(9)!
|
||||
// await buildPage.openBlocksPanel(); //(10)!
|
||||
// const block = await buildPage.getDictionaryBlockDetails();
|
||||
|
||||
await buildPage.addBlock(block); //(11)!
|
||||
await buildPage.closeBlocksPanel(); //(12)!
|
||||
await test.expect(buildPage.hasBlock(block)).resolves.toBeTruthy(); //(13)!
|
||||
});
|
||||
// --8<-- [end:BuildPageExample]
|
||||
// await buildPage.addBlock(block); //(11)!
|
||||
// await buildPage.closeBlocksPanel(); //(12)!
|
||||
// await test.expect(buildPage.hasBlock(block)).resolves.toBeTruthy(); //(13)!
|
||||
// });
|
||||
// // --8<-- [end:BuildPageExample]
|
||||
|
||||
test("user can add all blocks a-l", async ({ page }, testInfo) => {
|
||||
// this test is slow af so we 10x the timeout (sorry future me)
|
||||
await test.setTimeout(testInfo.timeout * 100);
|
||||
await test.expect(buildPage.isLoaded()).resolves.toBeTruthy();
|
||||
await test.expect(page).toHaveURL(new RegExp("/.*build"));
|
||||
await buildPage.closeTutorial();
|
||||
await buildPage.openBlocksPanel();
|
||||
const blocks = await buildPage.getBlocks();
|
||||
// test("user can add all blocks a-l", async ({ page }, testInfo) => {
|
||||
// // this test is slow af so we 10x the timeout (sorry future me)
|
||||
// await test.setTimeout(testInfo.timeout * 100);
|
||||
// await test.expect(buildPage.isLoaded()).resolves.toBeTruthy();
|
||||
// await test.expect(page).toHaveURL(new RegExp("/.*build"));
|
||||
// await buildPage.closeTutorial();
|
||||
// await buildPage.openBlocksPanel();
|
||||
// const blocks = await buildPage.getBlocks();
|
||||
|
||||
const blockIdsToSkip = await buildPage.getBlocksToSkip();
|
||||
const blockTypesToSkip = ["Input", "Output", "Agent", "AI"];
|
||||
// const blockIdsToSkip = await buildPage.getBlocksToSkip();
|
||||
// const blockTypesToSkip = ["Input", "Output", "Agent", "AI"];
|
||||
|
||||
// add all the blocks in order except for the agent executor block
|
||||
for (const block of blocks) {
|
||||
if (block.name[0].toLowerCase() >= "m") {
|
||||
continue;
|
||||
}
|
||||
if (!blockIdsToSkip.some((b) => b === block.id) && !blockTypesToSkip.some((b) => block.type === b)) {
|
||||
console.log("Adding block:", block.name, block.id, block.type, " skipping types:", blockTypesToSkip);
|
||||
await buildPage.addBlock(block);
|
||||
}
|
||||
}
|
||||
await buildPage.closeBlocksPanel();
|
||||
// check that all the blocks are visible
|
||||
for (const block of blocks) {
|
||||
if (block.name[0].toLowerCase() >= "m") {
|
||||
continue;
|
||||
}
|
||||
if (!blockIdsToSkip.some((b) => b === block.id) && !blockTypesToSkip.some((b) => block.type === b)) {
|
||||
console.log("Checking block:", block.name, block.id, block.type, " skipping types:", blockTypesToSkip);
|
||||
await test.expect(buildPage.hasBlock(block)).resolves.toBeTruthy();
|
||||
}
|
||||
}
|
||||
// // add all the blocks in order except for the agent executor block
|
||||
// for (const block of blocks) {
|
||||
// if (block.name[0].toLowerCase() >= "m") {
|
||||
// continue;
|
||||
// }
|
||||
// if (!blockIdsToSkip.some((b) => b === block.id) && !blockTypesToSkip.some((b) => block.type === b)) {
|
||||
// console.log("Adding block:", block.name, block.id, block.type, " skipping types:", blockTypesToSkip);
|
||||
// await buildPage.addBlock(block);
|
||||
// }
|
||||
// }
|
||||
// await buildPage.closeBlocksPanel();
|
||||
// // check that all the blocks are visible
|
||||
// for (const block of blocks) {
|
||||
// if (block.name[0].toLowerCase() >= "m") {
|
||||
// continue;
|
||||
// }
|
||||
// if (!blockIdsToSkip.some((b) => b === block.id) && !blockTypesToSkip.some((b) => block.type === b)) {
|
||||
// console.log("Checking block:", block.name, block.id, block.type, " skipping types:", blockTypesToSkip);
|
||||
// await test.expect(buildPage.hasBlock(block)).resolves.toBeTruthy();
|
||||
// }
|
||||
// }
|
||||
|
||||
// check that we can save the agent with all the blocks
|
||||
await buildPage.saveAgent("all blocks test", "all blocks test");
|
||||
// page should have a url like http://localhost:3000/build?flowID=f4f3a1da-cfb3-430f-a074-a455b047e340
|
||||
await test.expect(page).toHaveURL(new RegExp("/.*build\\?flowID=.+"));
|
||||
});
|
||||
// // check that we can save the agent with all the blocks
|
||||
// await buildPage.saveAgent("all blocks test", "all blocks test");
|
||||
// // page should have a url like http://localhost:3000/build?flowID=f4f3a1da-cfb3-430f-a074-a455b047e340
|
||||
// await test.expect(page).toHaveURL(new RegExp("/.*build\\?flowID=.+"));
|
||||
// });
|
||||
|
||||
test("user can add all blocks m-z", async ({ page }, testInfo) => {
|
||||
// this test is slow af so we 10x the timeout (sorry future me)
|
||||
await test.setTimeout(testInfo.timeout * 100);
|
||||
await test.expect(buildPage.isLoaded()).resolves.toBeTruthy();
|
||||
await test.expect(page).toHaveURL(new RegExp("/.*build"));
|
||||
await buildPage.closeTutorial();
|
||||
await buildPage.openBlocksPanel();
|
||||
const blocks = await buildPage.getBlocks();
|
||||
// test("user can add all blocks m-z", async ({ page }, testInfo) => {
|
||||
// // this test is slow af so we 10x the timeout (sorry future me)
|
||||
// await test.setTimeout(testInfo.timeout * 100);
|
||||
// await test.expect(buildPage.isLoaded()).resolves.toBeTruthy();
|
||||
// await test.expect(page).toHaveURL(new RegExp("/.*build"));
|
||||
// await buildPage.closeTutorial();
|
||||
// await buildPage.openBlocksPanel();
|
||||
// const blocks = await buildPage.getBlocks();
|
||||
|
||||
const blockIdsToSkip = await buildPage.getBlocksToSkip();
|
||||
const blockTypesToSkip = ["Input", "Output", "Agent", "AI"];
|
||||
// const blockIdsToSkip = await buildPage.getBlocksToSkip();
|
||||
// const blockTypesToSkip = ["Input", "Output", "Agent", "AI"];
|
||||
|
||||
// add all the blocks in order except for the agent executor block
|
||||
for (const block of blocks) {
|
||||
if (block.name[0].toLowerCase() < "m") {
|
||||
continue;
|
||||
}
|
||||
if (!blockIdsToSkip.some((b) => b === block.id) && !blockTypesToSkip.some((b) => block.type === b)) {
|
||||
console.log("Adding block:", block.name, block.id, block.type, " skipping types:", blockTypesToSkip);
|
||||
await buildPage.addBlock(block);
|
||||
}
|
||||
}
|
||||
await buildPage.closeBlocksPanel();
|
||||
// check that all the blocks are visible
|
||||
for (const block of blocks) {
|
||||
if (block.name[0].toLowerCase() < "m") {
|
||||
continue;
|
||||
}
|
||||
if (!blockIdsToSkip.some((b) => b === block.id) && !blockTypesToSkip.some((b) => block.type === b)) {
|
||||
console.log("Checking block:", block.name, block.id, block.type, " skipping types:", blockTypesToSkip);
|
||||
await test.expect(buildPage.hasBlock(block)).resolves.toBeTruthy();
|
||||
}
|
||||
}
|
||||
// // add all the blocks in order except for the agent executor block
|
||||
// for (const block of blocks) {
|
||||
// if (block.name[0].toLowerCase() < "m") {
|
||||
// continue;
|
||||
// }
|
||||
// if (!blockIdsToSkip.some((b) => b === block.id) && !blockTypesToSkip.some((b) => block.type === b)) {
|
||||
// console.log("Adding block:", block.name, block.id, block.type, " skipping types:", blockTypesToSkip);
|
||||
// await buildPage.addBlock(block);
|
||||
// }
|
||||
// }
|
||||
// await buildPage.closeBlocksPanel();
|
||||
// // check that all the blocks are visible
|
||||
// for (const block of blocks) {
|
||||
// if (block.name[0].toLowerCase() < "m") {
|
||||
// continue;
|
||||
// }
|
||||
// if (!blockIdsToSkip.some((b) => b === block.id) && !blockTypesToSkip.some((b) => block.type === b)) {
|
||||
// console.log("Checking block:", block.name, block.id, block.type, " skipping types:", blockTypesToSkip);
|
||||
// await test.expect(buildPage.hasBlock(block)).resolves.toBeTruthy();
|
||||
// }
|
||||
// }
|
||||
|
||||
// check that we can save the agent with all the blocks
|
||||
await buildPage.saveAgent("all blocks test", "all blocks test");
|
||||
// page should have a url like http://localhost:3000/build?flowID=f4f3a1da-cfb3-430f-a074-a455b047e340
|
||||
await test.expect(page).toHaveURL(new RegExp("/.*build\\?flowID=.+"));
|
||||
});
|
||||
// // check that we can save the agent with all the blocks
|
||||
// await buildPage.saveAgent("all blocks test", "all blocks test");
|
||||
// // page should have a url like http://localhost:3000/build?flowID=f4f3a1da-cfb3-430f-a074-a455b047e340
|
||||
// await test.expect(page).toHaveURL(new RegExp("/.*build\\?flowID=.+"));
|
||||
// });
|
||||
|
||||
test("build navigation is accessible from navbar", async ({ page }) => {
|
||||
await buildPage.navbar.clickBuildLink();
|
||||
await test.expect(page).toHaveURL(new RegExp("/build"));
|
||||
// workaround for #8788
|
||||
await page.reload();
|
||||
await page.reload();
|
||||
await test.expect(buildPage.isLoaded()).resolves.toBeTruthy();
|
||||
});
|
||||
// test("build navigation is accessible from navbar", async ({ page }) => {
|
||||
// await buildPage.navbar.clickBuildLink();
|
||||
// await test.expect(page).toHaveURL(new RegExp("/build"));
|
||||
// // workaround for #8788
|
||||
// await page.reload();
|
||||
// await page.reload();
|
||||
// await test.expect(buildPage.isLoaded()).resolves.toBeTruthy();
|
||||
// });
|
||||
|
||||
test("user can add two blocks and connect them", async ({
|
||||
page,
|
||||
}, testInfo) => {
|
||||
await test.setTimeout(testInfo.timeout * 10);
|
||||
// test("user can add two blocks and connect them", async ({
|
||||
// page,
|
||||
// }, testInfo) => {
|
||||
// await test.setTimeout(testInfo.timeout * 10);
|
||||
|
||||
await test.expect(buildPage.isLoaded()).resolves.toBeTruthy();
|
||||
await test.expect(page).toHaveURL(new RegExp("/.*build"));
|
||||
await buildPage.closeTutorial();
|
||||
await buildPage.openBlocksPanel();
|
||||
// await test.expect(buildPage.isLoaded()).resolves.toBeTruthy();
|
||||
// await test.expect(page).toHaveURL(new RegExp("/.*build"));
|
||||
// await buildPage.closeTutorial();
|
||||
// await buildPage.openBlocksPanel();
|
||||
|
||||
// Define the blocks to add
|
||||
const block1 = {
|
||||
id: "1ff065e9-88e8-4358-9d82-8dc91f622ba9",
|
||||
name: "Store Value 1",
|
||||
description: "Store Value Block 1",
|
||||
type: "Standard",
|
||||
};
|
||||
const block2 = {
|
||||
id: "1ff065e9-88e8-4358-9d82-8dc91f622ba9",
|
||||
name: "Store Value 2",
|
||||
description: "Store Value Block 2",
|
||||
type: "Standard",
|
||||
};
|
||||
// // Define the blocks to add
|
||||
// const block1 = {
|
||||
// id: "1ff065e9-88e8-4358-9d82-8dc91f622ba9",
|
||||
// name: "Store Value 1",
|
||||
// description: "Store Value Block 1",
|
||||
// type: "Standard",
|
||||
// };
|
||||
// const block2 = {
|
||||
// id: "1ff065e9-88e8-4358-9d82-8dc91f622ba9",
|
||||
// name: "Store Value 2",
|
||||
// description: "Store Value Block 2",
|
||||
// type: "Standard",
|
||||
// };
|
||||
|
||||
// Add the blocks
|
||||
await buildPage.addBlock(block1);
|
||||
await buildPage.addBlock(block2);
|
||||
await buildPage.closeBlocksPanel();
|
||||
// // Add the blocks
|
||||
// await buildPage.addBlock(block1);
|
||||
// await buildPage.addBlock(block2);
|
||||
// await buildPage.closeBlocksPanel();
|
||||
|
||||
// Connect the blocks
|
||||
await buildPage.connectBlockOutputToBlockInputViaDataId(
|
||||
"1-1-output-source",
|
||||
"1-2-input-target",
|
||||
);
|
||||
// // Connect the blocks
|
||||
// await buildPage.connectBlockOutputToBlockInputViaDataId(
|
||||
// "1-1-output-source",
|
||||
// "1-2-input-target",
|
||||
// );
|
||||
|
||||
// Fill in the input for the first block
|
||||
await buildPage.fillBlockInputByPlaceholder(
|
||||
block1.id,
|
||||
"Enter input",
|
||||
"Test Value",
|
||||
"1",
|
||||
);
|
||||
// // Fill in the input for the first block
|
||||
// await buildPage.fillBlockInputByPlaceholder(
|
||||
// block1.id,
|
||||
// "Enter input",
|
||||
// "Test Value",
|
||||
// "1",
|
||||
// );
|
||||
|
||||
// Save the agent and wait for the URL to update
|
||||
await buildPage.saveAgent(
|
||||
"Connected Blocks Test",
|
||||
"Testing block connections",
|
||||
);
|
||||
await test.expect(page).toHaveURL(new RegExp("/.*build\\?flowID=.+"));
|
||||
// // Save the agent and wait for the URL to update
|
||||
// await buildPage.saveAgent(
|
||||
// "Connected Blocks Test",
|
||||
// "Testing block connections",
|
||||
// );
|
||||
// await test.expect(page).toHaveURL(new RegExp("/.*build\\?flowID=.+"));
|
||||
|
||||
// Wait for the save button to be enabled again
|
||||
await buildPage.waitForSaveButton();
|
||||
// // Wait for the save button to be enabled again
|
||||
// await buildPage.waitForSaveButton();
|
||||
|
||||
// Ensure the run button is enabled
|
||||
await test.expect(buildPage.isRunButtonEnabled()).resolves.toBeTruthy();
|
||||
// // Ensure the run button is enabled
|
||||
// await test.expect(buildPage.isRunButtonEnabled()).resolves.toBeTruthy();
|
||||
|
||||
// Run the agent
|
||||
await buildPage.runAgent();
|
||||
// // Run the agent
|
||||
// await buildPage.runAgent();
|
||||
|
||||
// Wait for processing to complete by checking the completion badge
|
||||
await buildPage.waitForCompletionBadge();
|
||||
// // Wait for processing to complete by checking the completion badge
|
||||
// await buildPage.waitForCompletionBadge();
|
||||
|
||||
// Get the first completion badge and verify it's visible
|
||||
await test
|
||||
.expect(buildPage.isCompletionBadgeVisible())
|
||||
.resolves.toBeTruthy();
|
||||
});
|
||||
// // Get the first completion badge and verify it's visible
|
||||
// await test
|
||||
// .expect(buildPage.isCompletionBadgeVisible())
|
||||
// .resolves.toBeTruthy();
|
||||
// });
|
||||
|
||||
test("user can build an agent with inputs and output blocks", async ({
|
||||
page,
|
||||
}) => {
|
||||
// simple calculator to double input and output it
|
||||
// test("user can build an agent with inputs and output blocks", async ({
|
||||
// page,
|
||||
// }) => {
|
||||
// // simple calculator to double input and output it
|
||||
|
||||
// load the pages and prep
|
||||
await test.expect(buildPage.isLoaded()).resolves.toBeTruthy();
|
||||
await test.expect(page).toHaveURL(new RegExp("/.*build"));
|
||||
await buildPage.closeTutorial();
|
||||
await buildPage.openBlocksPanel();
|
||||
// // load the pages and prep
|
||||
// await test.expect(buildPage.isLoaded()).resolves.toBeTruthy();
|
||||
// await test.expect(page).toHaveURL(new RegExp("/.*build"));
|
||||
// await buildPage.closeTutorial();
|
||||
// await buildPage.openBlocksPanel();
|
||||
|
||||
// find the blocks we want
|
||||
const blocks = await buildPage.getBlocks();
|
||||
const inputBlock = blocks.find((b) => b.name === "Agent Input");
|
||||
const outputBlock = blocks.find((b) => b.name === "Agent Output");
|
||||
const calculatorBlock = blocks.find((b) => b.name === "Calculator");
|
||||
if (!inputBlock || !outputBlock || !calculatorBlock) {
|
||||
throw new Error("Input or output block not found");
|
||||
}
|
||||
// // find the blocks we want
|
||||
// const blocks = await buildPage.getBlocks();
|
||||
// const inputBlock = blocks.find((b) => b.name === "Agent Input");
|
||||
// const outputBlock = blocks.find((b) => b.name === "Agent Output");
|
||||
// const calculatorBlock = blocks.find((b) => b.name === "Calculator");
|
||||
// if (!inputBlock || !outputBlock || !calculatorBlock) {
|
||||
// throw new Error("Input or output block not found");
|
||||
// }
|
||||
|
||||
// add the blocks
|
||||
await buildPage.addBlock(inputBlock);
|
||||
await buildPage.addBlock(outputBlock);
|
||||
await buildPage.addBlock(calculatorBlock);
|
||||
await buildPage.closeBlocksPanel();
|
||||
// // add the blocks
|
||||
// await buildPage.addBlock(inputBlock);
|
||||
// await buildPage.addBlock(outputBlock);
|
||||
// await buildPage.addBlock(calculatorBlock);
|
||||
// await buildPage.closeBlocksPanel();
|
||||
|
||||
// Wait for blocks to be fully loaded
|
||||
await page.waitForTimeout(1000);
|
||||
// // Wait for blocks to be fully loaded
|
||||
// await page.waitForTimeout(1000);
|
||||
|
||||
await test.expect(buildPage.hasBlock(inputBlock)).resolves.toBeTruthy();
|
||||
await test.expect(buildPage.hasBlock(outputBlock)).resolves.toBeTruthy();
|
||||
await test
|
||||
.expect(buildPage.hasBlock(calculatorBlock))
|
||||
.resolves.toBeTruthy();
|
||||
// await test.expect(buildPage.hasBlock(inputBlock)).resolves.toBeTruthy();
|
||||
// await test.expect(buildPage.hasBlock(outputBlock)).resolves.toBeTruthy();
|
||||
// await test
|
||||
// .expect(buildPage.hasBlock(calculatorBlock))
|
||||
// .resolves.toBeTruthy();
|
||||
|
||||
// Wait for blocks to be ready for connections
|
||||
await page.waitForTimeout(1000);
|
||||
// // Wait for blocks to be ready for connections
|
||||
// await page.waitForTimeout(1000);
|
||||
|
||||
await buildPage.connectBlockOutputToBlockInputViaName(
|
||||
inputBlock.id,
|
||||
"Result",
|
||||
calculatorBlock.id,
|
||||
"A",
|
||||
);
|
||||
await buildPage.connectBlockOutputToBlockInputViaName(
|
||||
inputBlock.id,
|
||||
"Result",
|
||||
calculatorBlock.id,
|
||||
"B",
|
||||
);
|
||||
await buildPage.connectBlockOutputToBlockInputViaName(
|
||||
calculatorBlock.id,
|
||||
"Result",
|
||||
outputBlock.id,
|
||||
"Value",
|
||||
);
|
||||
// await buildPage.connectBlockOutputToBlockInputViaName(
|
||||
// inputBlock.id,
|
||||
// "Result",
|
||||
// calculatorBlock.id,
|
||||
// "A",
|
||||
// );
|
||||
// await buildPage.connectBlockOutputToBlockInputViaName(
|
||||
// inputBlock.id,
|
||||
// "Result",
|
||||
// calculatorBlock.id,
|
||||
// "B",
|
||||
// );
|
||||
// await buildPage.connectBlockOutputToBlockInputViaName(
|
||||
// calculatorBlock.id,
|
||||
// "Result",
|
||||
// outputBlock.id,
|
||||
// "Value",
|
||||
// );
|
||||
|
||||
// Wait for connections to stabilize
|
||||
await page.waitForTimeout(1000);
|
||||
// // Wait for connections to stabilize
|
||||
// await page.waitForTimeout(1000);
|
||||
|
||||
await buildPage.fillBlockInputByPlaceholder(
|
||||
inputBlock.id,
|
||||
"Enter Name",
|
||||
"Value",
|
||||
);
|
||||
await buildPage.fillBlockInputByPlaceholder(
|
||||
outputBlock.id,
|
||||
"Enter Name",
|
||||
"Doubled",
|
||||
);
|
||||
// await buildPage.fillBlockInputByPlaceholder(
|
||||
// inputBlock.id,
|
||||
// "Enter Name",
|
||||
// "Value",
|
||||
// );
|
||||
// await buildPage.fillBlockInputByPlaceholder(
|
||||
// outputBlock.id,
|
||||
// "Enter Name",
|
||||
// "Doubled",
|
||||
// );
|
||||
|
||||
// Wait before changing dropdown
|
||||
await page.waitForTimeout(500);
|
||||
// // Wait before changing dropdown
|
||||
// await page.waitForTimeout(500);
|
||||
|
||||
await buildPage.selectBlockInputValue(
|
||||
calculatorBlock.id,
|
||||
"Operation",
|
||||
"Add",
|
||||
);
|
||||
// await buildPage.selectBlockInputValue(
|
||||
// calculatorBlock.id,
|
||||
// "Operation",
|
||||
// "Add",
|
||||
// );
|
||||
|
||||
// Wait before saving
|
||||
await page.waitForTimeout(1000);
|
||||
// // Wait before saving
|
||||
// await page.waitForTimeout(1000);
|
||||
|
||||
await buildPage.saveAgent(
|
||||
"Input and Output Blocks Test",
|
||||
"Testing input and output blocks",
|
||||
);
|
||||
await test.expect(page).toHaveURL(new RegExp("/.*build\\?flowID=.+"));
|
||||
// await buildPage.saveAgent(
|
||||
// "Input and Output Blocks Test",
|
||||
// "Testing input and output blocks",
|
||||
// );
|
||||
// await test.expect(page).toHaveURL(new RegExp("/.*build\\?flowID=.+"));
|
||||
|
||||
// Wait for save to complete
|
||||
await page.waitForTimeout(1000);
|
||||
// // Wait for save to complete
|
||||
// await page.waitForTimeout(1000);
|
||||
|
||||
await buildPage.runAgent();
|
||||
await buildPage.fillRunDialog({
|
||||
Value: "10",
|
||||
});
|
||||
await buildPage.clickRunDialogRunButton();
|
||||
await buildPage.waitForCompletionBadge();
|
||||
await test
|
||||
.expect(buildPage.isCompletionBadgeVisible())
|
||||
.resolves.toBeTruthy();
|
||||
});
|
||||
});
|
||||
// await buildPage.runAgent();
|
||||
// await buildPage.fillRunDialog({
|
||||
// Value: "10",
|
||||
// });
|
||||
// await buildPage.clickRunDialogRunButton();
|
||||
// await buildPage.waitForCompletionBadge();
|
||||
// await test
|
||||
// .expect(buildPage.isCompletionBadgeVisible())
|
||||
// .resolves.toBeTruthy();
|
||||
// });
|
||||
// });
|
||||
|
||||
Reference in New Issue
Block a user