tests: update DuckDuckGo test selectors (#6080)

This commit is contained in:
Cristhian Zanforlin Lousa 2025-02-03 09:52:49 -03:00 committed by GitHub
commit 5bcf4d001f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 10 additions and 7 deletions

View file

@ -836,7 +836,6 @@
},
"node_modules/@clack/prompts/node_modules/is-unicode-supported": {
"version": "1.3.0",
"extraneous": true,
"inBundle": true,
"license": "MIT",
"engines": {

View file

@ -11,15 +11,19 @@ test(
await page.getByTestId("sidebar-search-input").click();
await page.getByTestId("sidebar-search-input").fill("duck");
await page.waitForSelector('//*[@id="toolsDuckDuckGo Search"]', {
await page.waitForSelector('[data-testid="toolsDuckDuckGo Search"]', {
timeout: 3000,
});
await page
.locator('//*[@id="toolsDuckDuckGo Search"]')
.dragTo(page.locator('//*[@id="react-flow-id"]'));
await page.mouse.up();
await page.mouse.down();
.getByTestId("toolsDuckDuckGo Search")
.hover()
.then(async () => {
await page
.getByTestId("add-component-button-duckduckgo-search")
.click();
});
await page.getByTestId("fit_view").click();
await page
@ -42,7 +46,7 @@ test(
) ?? false;
await page
.getByTestId("output-inspection-data-duckduckgosearch")
.getByTestId("output-inspection-data-duckduckgosearchcomponent")
.first()
.click();