Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { test, expect } from "@playwright/test";
import { AgenticGenUIPage } from "../../pages/crewAIPages/AgenticUIGenPage";

test.describe("Agent Generative UI Feature", () => {
test.fixme("[CrewAI] Agentic Gen UI", () => {
// Flaky
test("[CrewAI] should interact with the chat to get a planner on prompt", async ({
page,
Expand Down Expand Up @@ -35,7 +35,7 @@ test.describe("Agent Generative UI Feature", () => {
});

// Flaky
test("[CrewAI] should interact with the chat using predefined prompts and perform steps", async ({
test.fixme("[CrewAI] should interact with the chat using predefined prompts and perform steps", async ({
page,
}) => {
const genUIAgent = new AgenticGenUIPage(page);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ test.describe("Agent Generative UI Feature", () => {
await genUIAgent.sendButton.click();
await genUIAgent.assertAgentReplyVisible(/Hello/);

await genUIAgent.sendMessage("Give me a plan to make brownies");
await genUIAgent.sendMessage("Give me a plan to make brownies using your tools");
await genUIAgent.sendButton.click();

await expect(genUIAgent.agentPlannerContainer).toBeVisible({ timeout: 15000 });
Expand Down Expand Up @@ -51,7 +51,7 @@ test.describe("Agent Generative UI Feature", () => {
await genUIAgent.sendButton.click();
await genUIAgent.assertAgentReplyVisible(/Hello/);

await genUIAgent.sendMessage("Go to Mars");
await genUIAgent.sendMessage("Go to Mars using your tools");
await genUIAgent.sendButton.click();

await expect(genUIAgent.agentPlannerContainer).toBeVisible({ timeout: 15000 });
Expand Down
Loading