@sap_oss/wdio-qmate-service 2.16.0 → 2.16.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (160) hide show
  1. package/REUSE.toml +11 -0
  2. package/docs/doc.md +4 -2
  3. package/docs/sections/bestPractices/dataHandling.md +1 -1
  4. package/docs/sections/contact.md +8 -2
  5. package/docs/sections/features/advancedDataHandling.md +2 -0
  6. package/docs/sections/features/config.md +2 -0
  7. package/docs/sections/gettingStarted/config.md +2 -0
  8. package/docs/sections/gettingStarted/execution.md +2 -0
  9. package/docs/sections/gettingStarted/setup.md +2 -0
  10. package/docs/sections/gettingStarted/spec.md +2 -0
  11. package/docs/sections/support/knownIssuesAndLimitations.md +2 -0
  12. package/lib/reuse/modules/nonUi5/userInteraction.d.ts +2 -2
  13. package/lib/reuse/modules/nonUi5/userInteraction.js +2 -2
  14. package/lib/reuse/modules/service/odata.d.ts +7 -1
  15. package/lib/reuse/modules/service/odata.js +17 -12
  16. package/lib/reuse/modules/service/odata.js.map +1 -1
  17. package/lib/reuse/modules/ui5/session.js +19 -9
  18. package/lib/reuse/modules/ui5/session.js.map +1 -1
  19. package/package.json +2 -2
  20. package/test/core/functional/chaining/test.conf.js +1 -1
  21. package/test/core/functional/locators/ancestorProperties.test.js +6 -3
  22. package/test/core/functional/locators/childProperties.test.js +2 -1
  23. package/test/core/functional/locators/descendantProperties.test.js +4 -2
  24. package/test/core/functional/locators/mixedProperties.test.js +2 -3
  25. package/test/core/functional/locators/parentProperties.test.js +2 -1
  26. package/test/core/functional/locators/test.locator.conf.js +1 -1
  27. package/test/core/functional/nativeBrowser/runInBrowser.test.js +1 -1
  28. package/test/core/functional/nativeBrowser/test.conf.js +1 -1
  29. package/test/core/functional/nonUi5/test.conf.js +1 -1
  30. package/test/core/functional/ui5Properties/getAggregations.test.js +4 -3
  31. package/test/core/functional/ui5Properties/getAssociations.test.js +1 -1
  32. package/test/core/functional/ui5Properties/getProperties.test.js +9 -5
  33. package/test/core/functional/ui5Properties/test.conf.js +1 -1
  34. package/test/core/functional/uiveri5/test.conf.js +1 -1
  35. package/test/core/testIntegration/config.js +1 -1
  36. package/test/core/testIntegration/configMultiCombo.js +1 -1
  37. package/test/core/testIntegration/configTable.js +1 -1
  38. package/test/core/testIntegration/filters1.spec.js +103 -103
  39. package/test/core/testIntegration/multicombobox.spec.js +1 -0
  40. package/test/core/testIntegration/table.spec.js +1 -0
  41. package/test/reuse/common/assertion/test.assertion.conf.js +1 -1
  42. package/test/reuse/common/navigation/navigateToUrl.spec.js +1 -1
  43. package/test/reuse/common/navigation/navigateToUrlAndRetry.spec.js +1 -1
  44. package/test/reuse/common/userInteraction/clearAndFillActive.spec.js +6 -3
  45. package/test/reuse/common/userInteraction/clearAndFillActiveAndRetry.spec.js +6 -3
  46. package/test/reuse/common/userInteraction/fillActive.spec.js +8 -6
  47. package/test/reuse/common/userInteraction/fillActiveAndRetry.spec.js +4 -4
  48. package/test/reuse/common/userInteraction/pressKey.spec.js +2 -1
  49. package/test/reuse/nonUi5/assertion/expectCssPropertyValueToBe.spec.js +4 -4
  50. package/test/reuse/nonUi5/assertion/expectToBeVisible.spec.js +2 -1
  51. package/test/reuse/nonUi5/assertion/expectValueToBe.spec.js +2 -2
  52. package/test/reuse/nonUi5/assertion/test.assertion.conf.js +1 -1
  53. package/test/reuse/nonUi5/assertion/test.assertion.sauceLabs.conf.js +1 -1
  54. package/test/reuse/nonUi5/element/getAttributeValue.spec.js +3 -3
  55. package/test/reuse/nonUi5/element/getByChild.spec.js +5 -4
  56. package/test/reuse/nonUi5/element/getByClass.spec.js +4 -4
  57. package/test/reuse/nonUi5/element/getByCss.spec.js +4 -3
  58. package/test/reuse/nonUi5/element/getByCssContainingText.spec.js +4 -4
  59. package/test/reuse/nonUi5/element/getById.spec.js +3 -3
  60. package/test/reuse/nonUi5/element/getByParent.spec.js +5 -4
  61. package/test/reuse/nonUi5/element/getByXPath.spec.js +2 -2
  62. package/test/reuse/nonUi5/element/getCssPropertyValue.spec.js +3 -3
  63. package/test/reuse/nonUi5/element/getValue.spec.js +3 -3
  64. package/test/reuse/nonUi5/element/highlight.spec.js +1 -1
  65. package/test/reuse/nonUi5/element/isPresent.spec.js +3 -3
  66. package/test/reuse/nonUi5/element/isPresentByCss.spec.js +2 -2
  67. package/test/reuse/nonUi5/element/isPresentByXPath.spec.js +2 -2
  68. package/test/reuse/nonUi5/element/setInnerHTML.spec.js +1 -1
  69. package/test/reuse/nonUi5/element/test.element.conf.js +1 -1
  70. package/test/reuse/nonUi5/element/test.element.sauceLabs.conf.js +1 -1
  71. package/test/reuse/nonUi5/userInteraction/doubleClick.spec.js +2 -1
  72. package/test/reuse/nonUi5/userInteraction/moveCursorAndClick.spec.js +2 -1
  73. package/test/reuse/nonUi5/userInteraction/rightClick.spec.js +2 -1
  74. package/test/reuse/nonUi5/userInteraction/scrollToElement.spec.js +3 -3
  75. package/test/reuse/ui5/assertion/expectCssPropertyValueToBe.spec.js +2 -2
  76. package/test/reuse/ui5/assertion/expectMessageToastTextToBe.spec.js +4 -2
  77. package/test/reuse/ui5/assertion/expectToBeVisible.spec.js +1 -1
  78. package/test/reuse/ui5/assertion/expectToBeVisibleInViewport.spec.js +1 -1
  79. package/test/reuse/ui5/assertion/expectValidationError.spec.js +4 -2
  80. package/test/reuse/ui5/assertion/expectValidationSuccess.spec.js +4 -2
  81. package/test/reuse/ui5/assertion/expectValueToBeDefined.spec.js +2 -1
  82. package/test/reuse/ui5/assertion/test.assertion.conf.js +1 -1
  83. package/test/reuse/ui5/assertion/test.assertion.sauceLab.conf.js +1 -1
  84. package/test/reuse/ui5/confirmationDialog/clickButton.spec.js +4 -2
  85. package/test/reuse/ui5/confirmationDialog/clickNo.spec.js +4 -2
  86. package/test/reuse/ui5/confirmationDialog/clickOk.spec.js +2 -1
  87. package/test/reuse/ui5/confirmationDialog/clickYes.spec.js +2 -1
  88. package/test/reuse/ui5/confirmationDialog/test.confirmationDialog.conf.js +1 -1
  89. package/test/reuse/ui5/confirmationDialog/test.confirmationDialog.sauceLab.conf.js +1 -1
  90. package/test/reuse/ui5/control/focus.spec.js +6 -4
  91. package/test/reuse/ui5/control/getAggregationProperty.spec.js +4 -2
  92. package/test/reuse/ui5/control/getAssociationProperty.spec.js +5 -3
  93. package/test/reuse/ui5/control/test.control.conf.js +1 -1
  94. package/test/reuse/ui5/control/test.control.sauceLab.conf.js +1 -1
  95. package/test/reuse/ui5/date/fillRange.spec.js +3 -2
  96. package/test/reuse/ui5/date/pick.spec.js +7 -4
  97. package/test/reuse/ui5/date/pickRange.spec.js +8 -4
  98. package/test/reuse/ui5/element/getByChild.spec.js +7 -4
  99. package/test/reuse/ui5/element/getByParent.spec.js +6 -3
  100. package/test/reuse/ui5/element/getByText.spec.js +1 -1
  101. package/test/reuse/ui5/element/getCssPropertyValue.spec.js +2 -2
  102. package/test/reuse/ui5/element/getPropertyValue.spec.js +2 -1
  103. package/test/reuse/ui5/element/test.element.conf.js +1 -1
  104. package/test/reuse/ui5/element/test.element.sauceLab.conf.js +1 -1
  105. package/test/reuse/ui5/element/waitForAll.spec.js +4 -2
  106. package/test/reuse/ui5/errorDialog/clickClose.spec.js +2 -1
  107. package/test/reuse/ui5/errorDialog/expectToBeVisible.spec.js +2 -1
  108. package/test/reuse/ui5/navigationBar/clickBack.spec.js +4 -4
  109. package/test/reuse/ui5/navigationBar/clickUserIcon.spec.js +1 -1
  110. package/test/reuse/ui5/navigationBar/test.navigationBar.conf.js +1 -1
  111. package/test/reuse/ui5/navigationBar/test.navigationBar.sauceLab.conf.js +1 -1
  112. package/test/reuse/ui5/session/logout.spec.js +1 -1
  113. package/test/reuse/ui5/table/clickSettingsButton.spec.js +4 -2
  114. package/test/reuse/ui5/table/sortColumnAscending.spec.js +6 -3
  115. package/test/reuse/ui5/table/sortColumnDescending.spec.js +6 -3
  116. package/test/reuse/ui5/userInteraction/check.spec.js +6 -3
  117. package/test/reuse/ui5/userInteraction/clear.spec.js +6 -3
  118. package/test/reuse/ui5/userInteraction/clearAndFill.spec.js +12 -6
  119. package/test/reuse/ui5/userInteraction/clearAndFillAndRetry.spec.js +10 -5
  120. package/test/reuse/ui5/userInteraction/clearAndFillSmartFieldInput.spec.js +6 -4
  121. package/test/reuse/ui5/userInteraction/clearAndFillSmartFieldInputAndRetry.spec.js +2 -1
  122. package/test/reuse/ui5/userInteraction/clearAndRetry.spec.js +4 -2
  123. package/test/reuse/ui5/userInteraction/click.spec.js +6 -6
  124. package/test/reuse/ui5/userInteraction/clickAndRetry.spec.js +3 -3
  125. package/test/reuse/ui5/userInteraction/clickSelectArrow.spec.js +4 -2
  126. package/test/reuse/ui5/userInteraction/clickSelectArrowAndRetry.spec.js +6 -3
  127. package/test/reuse/ui5/userInteraction/clickTab.spec.js +5 -5
  128. package/test/reuse/ui5/userInteraction/doubleClick.spec.js +4 -4
  129. package/test/reuse/ui5/userInteraction/dragAndDrop.spec.js +2 -1
  130. package/test/reuse/ui5/userInteraction/fill.spec.js +6 -9
  131. package/test/reuse/ui5/userInteraction/fillAndRetry.spec.js +4 -4
  132. package/test/reuse/ui5/userInteraction/mouseOverElement.spec.js +4 -2
  133. package/test/reuse/ui5/userInteraction/openF4Help.spec.js +4 -2
  134. package/test/reuse/ui5/userInteraction/rightClick.spec.js +4 -4
  135. package/test/reuse/ui5/userInteraction/scrollToElement.spec.js +5 -4
  136. package/test/reuse/ui5/userInteraction/searchFor.spec.js +8 -4
  137. package/test/reuse/ui5/userInteraction/selectBox.spec.js +8 -4
  138. package/test/reuse/ui5/userInteraction/selectCombobox.spec.js +8 -4
  139. package/test/reuse/ui5/userInteraction/selectFromTab.spec.js +2 -2
  140. package/test/reuse/ui5/userInteraction/selectMultiComboBox.spec.js +10 -5
  141. package/test/reuse/ui5/userInteraction/test.userInteraction.conf.js +1 -1
  142. package/test/reuse/ui5/userInteraction/test.userInteraction.sauceLab.conf.js +1 -1
  143. package/test/reuse/ui5/userInteraction/uncheck.spec.js +6 -3
  144. package/test/reuse/util/browser/back.spec.js +1 -1
  145. package/test/reuse/util/browser/clearBrowser.spec.js +10 -20
  146. package/test/reuse/util/browser/executeScript.spec.js +15 -20
  147. package/test/reuse/util/browser/forward.spec.js +1 -1
  148. package/test/reuse/util/browser/getBaseUrl.spec.js +1 -1
  149. package/test/reuse/util/browser/getCurrentUrl.spec.js +1 -0
  150. package/test/reuse/util/browser/getCurrentWindow.spec.js +2 -2
  151. package/test/reuse/util/browser/refresh.spec.js +14 -22
  152. package/test/reuse/util/browser/setBaseUrl.spec.js +2 -2
  153. package/test/reuse/util/browser/switchToDefaultContent.spec.js +1 -6
  154. package/test/reuse/util/browser/switchToWindow.spec.js +2 -2
  155. package/test/reuse/util/browser/test.browser.conf.js +1 -1
  156. package/test/reuse/util/file/test.file.conf.js +1 -1
  157. package/test/reuse/util/file/upload.spec.js +5 -2
  158. package/test/reuse/util/formatter/test.formatter.conf.js +1 -1
  159. package/test/reuse/util/system/test.system.conf.js +1 -1
  160. package/.reuse/dep5 +0 -29
@@ -5,6 +5,7 @@ const { handleCookiesConsent } = require("../../helper/utils");
5
5
  describe("multi combo", function () {
6
6
  it("step1:click on arrow of multicombo", async function () {
7
7
  await handleCookiesConsent();
8
+ await util.browser.switchToIframe("[id='sampleFrame']");
8
9
  var ui5ControlProperties = {
9
10
  "elementProperties": { "metadata": "sap.m.MultiComboBox", "mProperties": {} },
10
11
  "parentProperties": { "metadata": "sap.ui.layout.VerticalLayout", "mProperties": {} },
@@ -4,6 +4,7 @@ describe("table", function () {
4
4
 
5
5
  it("step1:getChild", async function () {
6
6
  await handleCookiesConsent();
7
+ await util.browser.switchToIframe("[id='sampleFrame']");
7
8
  var ui5ControlProperties = {
8
9
  "elementProperties": { "metadata": "sap.m.ColumnListItem", "mProperties": { "bindingContextPath": "/ProductCollection/2" } },
9
10
  "parentProperties": { "metadata": "sap.m.Table", "mProperties": { "items": [{ "path": "/ProductCollection" }] } },
@@ -6,7 +6,7 @@ exports.config = merge(profile.config, {
6
6
  maxInstances: 6,
7
7
  specFileRetries: 2,
8
8
 
9
- baseUrl: "https://sapui5.hana.ondemand.com/1.96.27/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3",
9
+ baseUrl: "https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3",
10
10
 
11
11
  specs: [
12
12
  path.resolve(__dirname, "expectDefined.spec.js"),
@@ -1,5 +1,5 @@
1
1
  describe("navigateToUrl", function () {
2
- const url = "https://sapui5.hana.ondemand.com/1.96.27/";
2
+ const url = "https://sapui5.hana.ondemand.com/";
3
3
 
4
4
  it("Execution", async function () {
5
5
  await common.navigation.navigateToUrl(url);
@@ -1,5 +1,5 @@
1
1
  describe("navigateToUrlAndRetry", function () {
2
- const url = "https://sapui5.hana.ondemand.com/1.96.27/";
2
+ const url = "https://sapui5.hana.ondemand.com/";
3
3
  const retries = 1;
4
4
  const interval = 500;
5
5
 
@@ -8,9 +8,10 @@ describe("userInteraction - clearAndFillActive", function () {
8
8
 
9
9
  it("Preparation", async function () {
10
10
  await browser.navigateTo(
11
- "https://sapui5.hana.ondemand.com/1.96.27/#/entity/sap.ui.comp.smartfield.SmartField/sample/sap.ui.comp.sample.smartfield.Overview"
11
+ "https://sapui5.hana.ondemand.com/#/entity/sap.ui.comp.smartfield.SmartField/sample/sap.ui.comp.sample.smartfield.Overview"
12
12
  );
13
13
  await handleCookiesConsent();
14
+ await util.browser.switchToIframe("[id='sampleFrame']");
14
15
  });
15
16
 
16
17
  it("Execution", async function () {
@@ -49,9 +50,10 @@ describe("userInteraction - clearAndFillActive with invalid selector", function
49
50
  let value;
50
51
 
51
52
  it("Preparation", async function () {
52
- await browser.navigateTo("https://sapui5.hana.ondemand.com/1.96.27/#/entity/sap.m.Input/sample/sap.m.sample.InputDescription");
53
+ await browser.navigateTo("https://sapui5.hana.ondemand.com/#/entity/sap.m.Input/sample/sap.m.sample.InputDescription");
53
54
  await util.browser.refresh();
54
55
  await handleCookiesConsent();
56
+ await util.browser.switchToIframe("[id='sampleFrame']");
55
57
  });
56
58
 
57
59
  it("Execution & Verification", async function () {
@@ -71,9 +73,10 @@ describe("userInteraction - clearAndFillActive with wrong element", function ()
71
73
  let value;
72
74
 
73
75
  it("Preparation", async function () {
74
- await browser.navigateTo("https://sapui5.hana.ondemand.com/1.96.27/#/entity/sap.m.MenuButton/sample/sap.m.sample.MenuButton");
76
+ await browser.navigateTo("https://sapui5.hana.ondemand.com/#/entity/sap.m.MenuButton/sample/sap.m.sample.MenuButton");
75
77
  await util.browser.refresh();
76
78
  await handleCookiesConsent();
79
+ await util.browser.switchToIframe("[id='sampleFrame']");
77
80
  });
78
81
 
79
82
  it("Execution & Verification", async function () {
@@ -8,10 +8,11 @@ describe("userInteraction - clearAndFillActiveAndRetry", function () {
8
8
 
9
9
  it("Preparation", async function () {
10
10
  await browser.navigateTo(
11
- "https://sapui5.hana.ondemand.com/1.96.27/#/entity/sap.ui.comp.smartfield.SmartField/sample/sap.ui.comp.sample.smartfield.Overview"
11
+ "https://sapui5.hana.ondemand.com/#/entity/sap.ui.comp.smartfield.SmartField/sample/sap.ui.comp.sample.smartfield.Overview"
12
12
  );
13
13
  await util.browser.refresh();
14
14
  await handleCookiesConsent();
15
+ await util.browser.switchToIframe("[id='sampleFrame']");
15
16
  });
16
17
 
17
18
  it("Execution", async function () {
@@ -54,9 +55,10 @@ describe("userInteraction - clearAndFillActiveAndRetry with invalid selector", f
54
55
  let value;
55
56
 
56
57
  it("Preparation", async function () {
57
- await browser.navigateTo("https://sapui5.hana.ondemand.com/1.96.27/#/entity/sap.m.Input/sample/sap.m.sample.InputDescription");
58
+ await browser.navigateTo("https://sapui5.hana.ondemand.com/#/entity/sap.m.Input/sample/sap.m.sample.InputDescription");
58
59
  await util.browser.refresh();
59
60
  await handleCookiesConsent();
61
+ await util.browser.switchToIframe("[id='sampleFrame']");
60
62
  });
61
63
 
62
64
  it("Execution & Verification", async function () {
@@ -76,9 +78,10 @@ describe("userInteraction - clearAndFillActiveAndRetry with wrong element", func
76
78
  let value;
77
79
 
78
80
  it("Preparation", async function () {
79
- await browser.navigateTo("https://sapui5.hana.ondemand.com/1.96.27/#/entity/sap.m.MenuButton/sample/sap.m.sample.MenuButton");
81
+ await browser.navigateTo("https://sapui5.hana.ondemand.com/#/entity/sap.m.MenuButton/sample/sap.m.sample.MenuButton");
80
82
  await util.browser.refresh();
81
83
  await handleCookiesConsent();
84
+ await util.browser.switchToIframe("[id='sampleFrame']");
82
85
  });
83
86
 
84
87
  it("Execution & Verification", async function () {
@@ -11,7 +11,7 @@ describe("userInteraction - fillActive", function () {
11
11
  };
12
12
 
13
13
  it("Preparation", async function () {
14
- await browser.navigateTo("https://sapui5.hana.ondemand.com/1.96.27/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3");
14
+ await browser.navigateTo("https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3");
15
15
  await handleCookiesConsent();
16
16
  });
17
17
 
@@ -31,7 +31,7 @@ describe("userInteraction - fillActive", function () {
31
31
 
32
32
  describe("userInteraction - fillActive - element with invalid selector", function () {
33
33
  it("Preparation", async function () {
34
- await browser.navigateTo("https://sapui5.hana.ondemand.com/1.96.27/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3");
34
+ await browser.navigateTo("https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3");
35
35
  await handleCookiesConsent();
36
36
  });
37
37
 
@@ -51,7 +51,7 @@ describe("userInteraction - fillActive - element with number", function () {
51
51
  let actualValue;
52
52
 
53
53
  it("Preparation", async function () {
54
- await browser.navigateTo("https://sapui5.hana.ondemand.com/1.96.27/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3");
54
+ await browser.navigateTo("https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3");
55
55
  await handleCookiesConsent();
56
56
  });
57
57
 
@@ -80,7 +80,7 @@ describe("userInteraction - fillActive - element with empty value", function ()
80
80
  let value;
81
81
 
82
82
  it("Preparation", async function () {
83
- await browser.navigateTo("https://sapui5.hana.ondemand.com/1.96.27/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3");
83
+ await browser.navigateTo("https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3");
84
84
  await handleCookiesConsent();
85
85
  });
86
86
 
@@ -106,9 +106,10 @@ describe("userInteraction - fillActive - input", function () {
106
106
  let actualValue;
107
107
 
108
108
  it("Preparation", async function () {
109
- await browser.navigateTo("https://sapui5.hana.ondemand.com/1.96.27/#/entity/sap.m.Input/sample/sap.m.sample.InputAssisted");
109
+ await browser.navigateTo("https://sapui5.hana.ondemand.com/#/entity/sap.m.Input/sample/sap.m.sample.InputAssisted");
110
110
  await util.browser.refresh();
111
111
  await handleCookiesConsent();
112
+ await util.browser.switchToIframe("[id='sampleFrame']");
112
113
  });
113
114
 
114
115
  it("Execution", async function () {
@@ -137,9 +138,10 @@ describe("userInteraction - fillActive - textarea", function () {
137
138
  let actualValue;
138
139
 
139
140
  it("Preparation", async function () {
140
- await browser.navigateTo("https://sapui5.hana.ondemand.com/1.96.27/#/entity/sap.m.TextArea/sample/sap.m.sample.TextArea");
141
+ await browser.navigateTo("https://sapui5.hana.ondemand.com/#/entity/sap.m.TextArea/sample/sap.m.sample.TextArea");
141
142
  await util.browser.refresh();
142
143
  await handleCookiesConsent();
144
+ await util.browser.switchToIframe("[id='sampleFrame']");
143
145
  });
144
146
 
145
147
  it("Execution", async function () {
@@ -5,7 +5,7 @@ describe("userInteraction - fillActiveAndRetry", function () {
5
5
  let actualValue;
6
6
 
7
7
  it("Preparation", async function () {
8
- await browser.navigateTo("https://sapui5.hana.ondemand.com/1.96.27/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3");
8
+ await browser.navigateTo("https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3");
9
9
  await handleCookiesConsent();
10
10
  });
11
11
 
@@ -35,7 +35,7 @@ describe("userInteraction - fillActiveAndRetry", function () {
35
35
 
36
36
  describe("userInteraction - fillActiveAndRetry - invalid selector", function () {
37
37
  it("Preparation", async function () {
38
- await browser.navigateTo("https://sapui5.hana.ondemand.com/1.96.27/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3");
38
+ await browser.navigateTo("https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3");
39
39
  await handleCookiesConsent();
40
40
  });
41
41
 
@@ -56,7 +56,7 @@ describe("userInteraction - fillActiveAndRetry - element with number", function
56
56
  let actualValue;
57
57
 
58
58
  it("Preparation", async function () {
59
- await browser.navigateTo("https://sapui5.hana.ondemand.com/1.96.27/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3");
59
+ await browser.navigateTo("https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3");
60
60
  await handleCookiesConsent();
61
61
  });
62
62
 
@@ -87,7 +87,7 @@ describe("userInteraction - fillActiveAndRetry - empty value", function () {
87
87
  let value;
88
88
 
89
89
  it("Preparation", async function () {
90
- await browser.navigateTo("https://sapui5.hana.ondemand.com/1.96.27/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3");
90
+ await browser.navigateTo("https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3");
91
91
  await handleCookiesConsent();
92
92
  });
93
93
 
@@ -87,8 +87,9 @@ describe("userInteraction - pressEscape", function () {
87
87
  describe("userInteraction - selectAll", function () {
88
88
 
89
89
  it("Preparation", async function () {
90
- await browser.navigateTo("https://sapui5.hana.ondemand.com/1.96.27/#/entity/sap.m.Input/sample/sap.m.sample.InputValueState");
90
+ await browser.navigateTo("https://sapui5.hana.ondemand.com/#/entity/sap.m.Input/sample/sap.m.sample.InputValueState");
91
91
  await handleCookiesConsent();
92
+ await util.browser.switchToIframe("[id='sampleFrame']");
92
93
  });
93
94
 
94
95
  it("Execution", async function () {
@@ -7,7 +7,7 @@ const compareValue = "visible";
7
7
 
8
8
  describe("assertion - expectCssPropertyValueToBe - element", function () {
9
9
  it("Preparation", async function () {
10
- await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/1.96.27/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
10
+ await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
11
11
  await handleCookiesConsent();
12
12
  });
13
13
 
@@ -19,7 +19,7 @@ describe("assertion - expectCssPropertyValueToBe - element", function () {
19
19
 
20
20
  describe("assertion - expectCssPropertyValueToBe - selector", function () {
21
21
  it("Preparation", async function () {
22
- await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/1.96.27/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
22
+ await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
23
23
  await handleCookiesConsent();
24
24
  });
25
25
 
@@ -32,7 +32,7 @@ const errorRegexp = /Expected.*wrong.*|Received.*visible/;
32
32
 
33
33
  describe("assertion - expectCssPropertyValueToBe - element - error", function () {
34
34
  it("Preparation", async function () {
35
- await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/1.96.27/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
35
+ await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
36
36
  await handleCookiesConsent();
37
37
  });
38
38
 
@@ -45,7 +45,7 @@ describe("assertion - expectCssPropertyValueToBe - element - error", function ()
45
45
 
46
46
  describe("assertion - expectCssPropertyValueToBe - selector - error", function () {
47
47
  it("Preparation", async function () {
48
- await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/1.96.27/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
48
+ await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
49
49
  await handleCookiesConsent();
50
50
  });
51
51
 
@@ -19,8 +19,9 @@ describe("assertion - expectToBeVisible", function () {
19
19
 
20
20
  describe("assertion - expectToBeVisible - element out of viewport", function () {
21
21
  it("Preparation", async function () {
22
- await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/1.96.27/#/entity/sap.m.MultiComboBox/sample/sap.m.sample.MultiComboBox");
22
+ await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/#/entity/sap.m.MultiComboBox/sample/sap.m.sample.MultiComboBox");
23
23
  await handleCookiesConsent();
24
+ await util.browser.switchToIframe("[id='sampleFrame']");
24
25
  });
25
26
 
26
27
  it("Execution", async function () {
@@ -3,7 +3,7 @@ const { handleCookiesConsent } = require("../../../helper/utils");
3
3
 
4
4
  describe("assertion - expectValueToBe", function () {
5
5
  it("Preparation", async function () {
6
- await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/1.96.27/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
6
+ await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
7
7
  await handleCookiesConsent();
8
8
  });
9
9
 
@@ -15,7 +15,7 @@ describe("assertion - expectValueToBe", function () {
15
15
 
16
16
  describe("assertion - expectValueToBe - error case", function () {
17
17
  it("Preparation", async function () {
18
- await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/1.96.27/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
18
+ await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
19
19
  });
20
20
 
21
21
  it("Execution & Verification", async function () {
@@ -6,7 +6,7 @@ exports.config = merge(profile.config, {
6
6
  maxInstances: 6,
7
7
  specFileRetries: 2,
8
8
 
9
- baseUrl: "https://sapui5.hana.ondemand.com/1.96.27/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3",
9
+ baseUrl: "https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3",
10
10
 
11
11
  specs: [
12
12
  path.resolve(__dirname, "expectToBeVisible.spec.js"),
@@ -8,7 +8,7 @@ exports.config = merge(profile.config, {
8
8
 
9
9
  maxInstances: 5,
10
10
  bail: 1,
11
- baseUrl: "https://sapui5.hana.ondemand.com/1.96.27/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3",
11
+ baseUrl: "https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3",
12
12
 
13
13
  specs: [
14
14
  path.resolve(__dirname, "expectToBeVisible.spec.js"),
@@ -9,7 +9,7 @@ describe("element - getAttributeValue - inner HTML", function () {
9
9
  let valueAct;
10
10
 
11
11
  it("Preparation", async function () {
12
- await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/1.96.27/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
12
+ await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
13
13
  await handleCookiesConsent();
14
14
  });
15
15
 
@@ -30,7 +30,7 @@ describe("element - getAttributeValue - with attribute", function () {
30
30
  let valueAct;
31
31
 
32
32
  it("Preparation", async function () {
33
- await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/1.96.27/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
33
+ await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
34
34
  await handleCookiesConsent();
35
35
  });
36
36
 
@@ -48,7 +48,7 @@ describe("element - getAttributeValue - with attribute", function () {
48
48
  describe("element - getAttributeValue - error", function () {
49
49
 
50
50
  it("Preparation", async function () {
51
- await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/1.96.27/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
51
+ await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
52
52
  });
53
53
 
54
54
  it("Execution & Verification", async function () {
@@ -7,7 +7,7 @@ describe("element - getByChild", function () {
7
7
  let elemAct;
8
8
 
9
9
  it("Preparation", async function () {
10
- await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/1.96.27/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
10
+ await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
11
11
  await handleCookiesConsent();
12
12
  });
13
13
 
@@ -26,8 +26,9 @@ describe("element - getByChild - with index", function () {
26
26
  let elemAct;
27
27
 
28
28
  it("Preparation", async function () {
29
- await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/1.96.27/#/entity/sap.m.Tree/sample/sap.m.sample.TreeExpandMulti");
29
+ await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/#/entity/sap.m.Tree/sample/sap.m.sample.TreeExpandMulti");
30
30
  await handleCookiesConsent();
31
+ await util.browser.switchToIframe("[id='sampleFrame']");
31
32
  });
32
33
 
33
34
  it("Execution", async function () {
@@ -45,7 +46,7 @@ describe("element - getByChild - with index", function () {
45
46
 
46
47
  describe("element - getByChild - error case with wrong element", function () {
47
48
  it("Preparation", async function () {
48
- await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/1.96.27/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
49
+ await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
49
50
  });
50
51
 
51
52
  it("Execution & Verification", async function () {
@@ -58,7 +59,7 @@ describe("element - getByChild - error case with wrong element", function () {
58
59
 
59
60
  describe("element - getByChild - error case with wrong order of parent and child", function () {
60
61
  it("Preparation", async function () {
61
- await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/1.96.27/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
62
+ await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
62
63
  });
63
64
 
64
65
  it("Execution & Verification", async function () {
@@ -5,7 +5,7 @@ describe("element - getByClass + expectToBeVisible", function () {
5
5
  let downloadBtn;
6
6
 
7
7
  it("Preparation", async function () {
8
- await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/1.96.27/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
8
+ await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
9
9
  });
10
10
 
11
11
  it("Execution", async function () {
@@ -22,7 +22,7 @@ describe("element - getByClass - multiple classes", function () {
22
22
  let element;
23
23
 
24
24
  it("Preparation", async function () {
25
- await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/1.96.27/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
25
+ await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
26
26
  });
27
27
 
28
28
  it("Execution", async function () {
@@ -39,7 +39,7 @@ describe("element - getByClass - all classes", function () {
39
39
  let element;
40
40
 
41
41
  it("Preparation", async function () {
42
- await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/1.96.27/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
42
+ await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
43
43
  });
44
44
 
45
45
  it("Execution", async function () {
@@ -54,7 +54,7 @@ describe("element - getByClass - all classes", function () {
54
54
  describe("element - getByClass and catch error", function () {
55
55
 
56
56
  it("Preparation", async function () {
57
- await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/1.96.27/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
57
+ await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
58
58
  });
59
59
 
60
60
  it("Execution & Verification", async function () {
@@ -8,7 +8,7 @@ describe("element - getByCss + expectToBeVisible", function () {
8
8
  let downloadBtn;
9
9
 
10
10
  it("Preparation", async function () {
11
- await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/1.96.27/");
11
+ await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/");
12
12
  await handleCookiesConsent();
13
13
  });
14
14
 
@@ -24,9 +24,10 @@ describe("element - getByCss + expectToBeVisible", function () {
24
24
  describe("element - getByCss outside of viewpoint", function () {
25
25
  let comboBoxElement;
26
26
  it("Preparation", async function () {
27
- await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/1.96.27/#/entity/sap.m.MultiComboBox/sample/sap.m.sample.MultiComboBox");
27
+ await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/#/entity/sap.m.MultiComboBox/sample/sap.m.sample.MultiComboBox");
28
28
  await util.browser.refresh(); // Need a refresh here as sapui5.hana.ondemand.com doesn't work correctly from time to time
29
29
  await handleCookiesConsent();
30
+ await util.browser.switchToIframe("[id='sampleFrame']");
30
31
 
31
32
  const selectorForDropdownList = {
32
33
  "elementProperties": {
@@ -54,7 +55,7 @@ describe("element - getByCss outside of viewpoint", function () {
54
55
  describe("element - getByCss and catch error", function () {
55
56
 
56
57
  it("Preparation", async function () {
57
- await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/1.96.27/");
58
+ await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/");
58
59
  await handleCookiesConsent();
59
60
  });
60
61
 
@@ -5,7 +5,7 @@ describe("element - getByCssContainingText - non strict", function () {
5
5
  let downloadBtn;
6
6
 
7
7
  it("Preparation", async function () {
8
- await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/1.96.27/");
8
+ await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/");
9
9
  await handleCookiesConsent();
10
10
  });
11
11
 
@@ -24,7 +24,7 @@ describe("element - getByCssContainingText - strict", function () {
24
24
  let downloadBtn;
25
25
 
26
26
  it("Preparation", async function () {
27
- await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/1.96.27/");
27
+ await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/");
28
28
  await handleCookiesConsent();
29
29
  });
30
30
 
@@ -41,7 +41,7 @@ describe("element - getByCssContainingText - strict", function () {
41
41
 
42
42
  describe("element - getByCssContainingText - strict error case", function () {
43
43
  it("Preparation", async function () {
44
- await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/1.96.27/");
44
+ await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/");
45
45
  await handleCookiesConsent();
46
46
  });
47
47
 
@@ -54,7 +54,7 @@ describe("element - getByCssContainingText - strict error case", function () {
54
54
 
55
55
  describe("element - getByCssContainingText - error case", function () {
56
56
  it("Preparation", async function () {
57
- await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/1.96.27/");
57
+ await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/");
58
58
  await handleCookiesConsent();
59
59
  });
60
60
 
@@ -8,7 +8,7 @@ describe("element - getById + expectToBeVisible", function () {
8
8
  let downloadBtn;
9
9
 
10
10
  it("Preparation", async function () {
11
- await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/1.96.27/");
11
+ await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/");
12
12
  await handleCookiesConsent();
13
13
  });
14
14
 
@@ -24,7 +24,7 @@ describe("element - getById + expectToBeVisible", function () {
24
24
  describe("element - getById and catch error", function () {
25
25
 
26
26
  it("Preparation", async function () {
27
- await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/1.96.27/");
27
+ await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/");
28
28
  await handleCookiesConsent();
29
29
  });
30
30
 
@@ -37,7 +37,7 @@ describe("element - getById and catch error", function () {
37
37
  describe("element - getById - error case, verify error stack", function () {
38
38
 
39
39
  it("Preparation", async function () {
40
- await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/1.96.27/");
40
+ await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/");
41
41
  await handleCookiesConsent();
42
42
  });
43
43
 
@@ -6,7 +6,7 @@ describe("element - getByParent", function () {
6
6
 
7
7
  it("Preparation", async function () {
8
8
  await common.navigation.navigateToUrl(
9
- "https://sapui5.hana.ondemand.com/1.96.27/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories"
9
+ "https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories"
10
10
  );
11
11
  await handleCookiesConsent();
12
12
  });
@@ -26,8 +26,9 @@ describe("element - getByParent - with index", function () {
26
26
  let elemAct;
27
27
 
28
28
  it("Preparation", async function () {
29
- await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/1.96.27/#/entity/sap.m.Tree/sample/sap.m.sample.TreeExpandMulti");
29
+ await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/#/entity/sap.m.Tree/sample/sap.m.sample.TreeExpandMulti");
30
30
  await handleCookiesConsent();
31
+ await util.browser.switchToIframe("[id='sampleFrame']");
31
32
  });
32
33
 
33
34
  it("Execution", async function () {
@@ -46,7 +47,7 @@ describe("element - getByParent - with index", function () {
46
47
  describe("element - getByParent - error case with wrong element", function () {
47
48
  it("Preparation", async function () {
48
49
  await common.navigation.navigateToUrl(
49
- "https://sapui5.hana.ondemand.com/1.96.27/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories"
50
+ "https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories"
50
51
  );
51
52
  });
52
53
 
@@ -62,7 +63,7 @@ describe("element - getByParent - error case with wrong element", function () {
62
63
  describe("element - getByParent - error case with wrong order of parent and child", function () {
63
64
  it("Preparation", async function () {
64
65
  await common.navigation.navigateToUrl(
65
- "https://sapui5.hana.ondemand.com/1.96.27/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories"
66
+ "https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories"
66
67
  );
67
68
  });
68
69
 
@@ -5,7 +5,7 @@ describe("element - getByXPath + expectToBeVisible", function () {
5
5
  let searchInput;
6
6
 
7
7
  it("Preparation", async function () {
8
- await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/1.96.27/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
8
+ await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
9
9
  });
10
10
 
11
11
  it("Execution", async function () {
@@ -20,7 +20,7 @@ describe("element - getByXPath + expectToBeVisible", function () {
20
20
  describe("element - getByXPath and catch error", function () {
21
21
 
22
22
  it("Preparation", async function () {
23
- await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/1.96.27/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
23
+ await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
24
24
  });
25
25
 
26
26
  it("Execution & Verification", async function () {
@@ -11,7 +11,7 @@ describe("element - getCssPropertyValue - element", function () {
11
11
  let valueAct;
12
12
 
13
13
  it("Preparation", async function () {
14
- await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/1.96.27/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
14
+ await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
15
15
  await handleCookiesConsent();
16
16
  });
17
17
 
@@ -29,7 +29,7 @@ describe("element - getCssPropertyValue - selector", function () {
29
29
  let valueAct;
30
30
 
31
31
  it("Preparation", async function () {
32
- await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/1.96.27/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
32
+ await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
33
33
  await handleCookiesConsent();
34
34
  });
35
35
 
@@ -45,7 +45,7 @@ describe("element - getCssPropertyValue - selector", function () {
45
45
  describe("element - getCssPropertyValue - error", function () {
46
46
 
47
47
  it("Preparation", async function () {
48
- await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/1.96.27/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
48
+ await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
49
49
  });
50
50
 
51
51
  it("Execution & Verification", async function () {
@@ -7,7 +7,7 @@ describe("element - getValue", function () {
7
7
  let actValue;
8
8
 
9
9
  it("Preparation", async function () {
10
- await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/1.96.27/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
10
+ await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
11
11
  await handleCookiesConsent();
12
12
  });
13
13
 
@@ -25,7 +25,7 @@ describe("element - getValue - innerHTML", function () {
25
25
  let actValue;
26
26
 
27
27
  it("Preparation", async function () {
28
- await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/1.96.27/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
28
+ await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
29
29
  });
30
30
 
31
31
  it("Execution", async function () {
@@ -41,7 +41,7 @@ describe("element - getValue - innerHTML", function () {
41
41
 
42
42
  describe("element - getValue - error case", function () {
43
43
  it("Preparation", async function () {
44
- await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/1.96.27/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
44
+ await common.navigation.navigateToUrl("https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_fiori_3#/categories");
45
45
  });
46
46
 
47
47
  it("Execution & Verification", async function () {