Skip to content

Commit 1655215

Browse files
committed
chore: revert change to fill function
1 parent 42efed2 commit 1655215

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/reuse/modules/ui5/userInteraction.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -247,9 +247,9 @@ export class UserInteraction {
247247
const id = await ui5.element.getId(selector, index, timeout);
248248
let elem = null;
249249
if (selector.elementProperties.metadata === "sap.m.TextArea") {
250-
elem = await nonUi5.element.getByCss("[id='" + id + "'] textarea", index, timeout);
250+
elem = await nonUi5.element.getByCss("[id='" + id + "'] textarea", 0, timeout);
251251
} else {
252-
elem = await nonUi5.element.getByCss("[id='" + id + "'] input", index, timeout);
252+
elem = await nonUi5.element.getByCss("[id='" + id + "'] input", 0, timeout);
253253
}
254254
await elem.setValue(value);
255255
} else {

0 commit comments

Comments
 (0)