Simon Coen
Simon Coen
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...
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
- remove everything that is unnecessary for the fe-app test execution. Especially the whole CAP part is not needed for our tests
The [autowaiter](https://github.com/SAP/openui5/tree/master/src/sap.ui.core/src/sap/ui/test/autowaiter) is used for `OPA5` and `wdi5` to synchronize tests with the application under test. There is a [TimeoutWaiter](https://github.com/SAP/openui5/blob/master/src/sap.ui.core/src/sap/ui/test/autowaiter/_timeoutWaiter.js#L38) which watches for ongoing `setTimeout` calls. In the `TimeoutWaiter` the...
When using the multiremote feature of wdio the method chaining like: ```javascript await browser.one.asControl({ selector: {...} }).press() ``` does not work. The control is retrieved correctly from **browser.one** but wdio...
Create multiple facades, depending on the amount of configured capabilities
How we currently suggest to **navigate in the FLP** is more of a bad practice than a good one. In my opinion there are 3 better ways to do that:...