Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tests: fix dropdown components test #3504

Merged
merged 3 commits into from
Aug 22, 2024
Merged
Changes from 2 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
18 changes: 16 additions & 2 deletions src/frontend/tests/scheduled-end-to-end/dropdownComponent.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,11 +145,25 @@ test("dropDownComponent", async ({ page }) => {
expect(false).toBeTruthy();
}
await page.getByTestId("code-button-modal").click();
await page.waitForTimeout(1000);

await page
.locator(".ace_content")
.hover()
.then(async () => {
await page.waitForTimeout(1000);
await page.mouse.wheel(0, 800);
});

await page.waitForTimeout(1000);

const element = page
.locator("#CodeEditor div")
.filter({ hasText: "import ChatBedrock" })
.nth(1)
.click();
.nth(1);

await element.click();

await page.locator("textarea").press("Control+a");
const emptyOptionsCode = `from langchain_community.chat_models.bedrock import BedrockChat

Expand Down
Loading