Skip to content

Commit 13a94c8

Browse files
authored
fix: remove 'parameters' in odata.ts (#345)
* fix: remove 'parameters' in odata.ts * fix: update cookies consent handling to support new dialog structure * fix: rename variable for clarity in cookies consent handling * fix: change to .any as .race will be always be fulfilled despite if the promise is rejected
1 parent 4df5b80 commit 13a94c8

File tree

3 files changed

+9
-13
lines changed

3 files changed

+9
-13
lines changed

src/reuse/modules/service/odata.ts

+2-11
Original file line numberDiff line numberDiff line change
@@ -77,15 +77,6 @@ export class OData {
7777
error: console.error
7878
};
7979

80-
const parameters = {
81-
...{
82-
"sap-client": "715",
83-
"sap-documentation": ["heading", "quickinfo"],
84-
"sap-language": "EN"
85-
},
86-
...params
87-
};
88-
8980
const auth: any = {
9081
username,
9182
password
@@ -97,8 +88,8 @@ export class OData {
9788
logger: loggingEnabled ? logger : "",
9889
url,
9990
auth,
100-
parameters, // Define initial request by $metadata?sap-client=<client-number>&sap-documentation=&sap-language=EN
101-
strict: false // ignore non critical errors, e.g. orphaned annotations
91+
params,
92+
strict: false
10293
});
10394

10495
await srv.init;

test/helper/utils.js

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
exports.handleCookiesConsent = async function handleCookiesConsent() {
22
// eslint-disable-next-line no-undef
33
await util.function.executeOptional(async function () {
4-
const selector = {
4+
const oldCookiesConsentDialog = {
55
"elementProperties": {
66
"viewName": "sap.ui.documentation.sdk.view.App",
77
"metadata": "sap.m.Button",
@@ -10,6 +10,10 @@ exports.handleCookiesConsent = async function handleCookiesConsent() {
1010
}]
1111
}
1212
};
13-
await ui5.userInteraction.click(selector, 0, 15000);
13+
const newCookiesConsentDialog = "button[id='truste-consent-button']";
14+
await Promise.any([
15+
ui5.userInteraction.click(oldCookiesConsentDialog, 0, 15000),
16+
nonUi5.userInteraction.click(newCookiesConsentDialog, 0, 15000)
17+
]);
1418
}, []);
1519
};

test/reuse/nonUi5/userInteraction/clickElementInSvg.spec.js

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ describe("userInteraction - clickElementInSvg - UI5 SVG Chart", function () {
77
it("Preparation", async function () {
88
await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/#/entity/sap.suite.ui.commons.ChartContainer/sample/sap.suite.ui.commons.sample.ChartContainerToolbarEnhancement");
99
await handleCookiesConsent();
10+
await util.browser.sleep(5000);
1011
});
1112

1213
it("Execution", async function () {

0 commit comments

Comments
 (0)