wdi5 icon indicating copy to clipboard operation
wdi5 copied to clipboard

official UI5 end-to-end test framework for UI5 web-apps. wdi5 = Webdriver.IO + UI5 Test API

Results 77 wdi5 issues
Sort by recently updated
recently updated
newest added

Following example works: ```javascript const mainUserInput = await browser.asControl(inputSelector) await mainUserInput.enterText(newUsername) ``` The same written in one line: ```javascript await browser.asControl(inputSelector).enterText(newUsername) ``` fails with following error: ```bash [chrome 103.0.5060.53 mac...

bug

The minimum required UI5 version is 1.60 because since then the [Record Replay](https://openui5.hana.ondemand.com/api/sap.ui.test.RecordReplay) API is available and we heavily rely on it to identify the controls. #310

🖊 documentation

Hi, we face the issue that for one of our apps the expand header button can not be found. It is using a DynamicPage with a SmartFilterbar in the DynamicPage...

Hello @all, after update from ``` "chromedriver": "^103.0.0", --> "^104.0.0" "wdio-ui5-service": "^0.9.4" --> "^0.9.10" ``` we're not able to test with differnt users & roles anymore. Before adding credentials to...

**Describe the bug** Similar to something what is described [here](https://js-soft.github.io/wdi5/#/usage?id=getaggregation), doesn't work for SmartFilterBar. Invoking `listItem.getTitle` doesn't work ``` const control = await browser.asControl(oListSelector) const ui5ListItems = await control.getAggregation("items") for...

as [`standard-version` is deprecated](https://github.com/conventional-changelog/standard-version/pull/907), we need to move to another auto-magic binary for cutting our releases based on the conventional commits. contenders: - https://github.com/absolute-version/commit-and-tag-version → fork of `standard-version`

good first issue

**Describe the bug** Running the example setup in `examples/ui5-js-app` does not work out of the box. There exists a multiple issues in this setup **To Reproduce** Steps to reproduce the...