Skip to content

Commit

Permalink
fix(ui5-combobox): fix failing test (#8220)
Browse files Browse the repository at this point in the history
* fix(ui5-combobox): fix failing test

* fix(ui5-combobox): fix failing test

---------

Co-authored-by: Nia Peeva <niya.peeva@sap.com>
  • Loading branch information
niyap and Nia Peeva committed Feb 1, 2024
1 parent 93752a6 commit 888bcd0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/main/test/specs/ComboBox.mobile.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,12 @@ describe("Typeahead", () => {
await combo.click();

const dialogInput = await browser.$(`.${staticAreaItemClassName}`).shadow$("ui5-responsive-popover").$("[ui5-input]");
await dialogInput.keys("Bu");

await dialogInput.shadow$("input").click();

await browser.keys("B");
await browser.keys("u");

assert.strictEqual(await dialogInput.getProperty("value"), sExpected, "Value is autocompleted");
});

Expand Down

0 comments on commit 888bcd0

Please sign in to comment.