|
| 1 | +"use strict"; |
| 2 | +const { handleCookiesConsent } = require("../../../helper/utils"); |
| 3 | + |
| 4 | +const selector = "//div[contains(text(),'Laptops')]"; |
| 5 | +const cssProperty = "visibility"; |
| 6 | +const compareValue = "visible"; |
| 7 | + |
| 8 | +describe("assertion - expectCssPropertyValueToBe - element", function () { |
| 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"); |
| 11 | + await handleCookiesConsent(); |
| 12 | + }); |
| 13 | + |
| 14 | + it("Execution and Verification", async function () { |
| 15 | + const product = await nonUi5.element.getByXPath(selector); |
| 16 | + await nonUi5.assertion.expectCssPropertyValueToBe(product, cssProperty, compareValue); |
| 17 | + }); |
| 18 | +}); |
| 19 | + |
| 20 | +describe("assertion - expectCssPropertyValueToBe - selector", function () { |
| 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"); |
| 23 | + await handleCookiesConsent(); |
| 24 | + }); |
| 25 | + |
| 26 | + it("Execution and Verification", async function () { |
| 27 | + await nonUi5.assertion.expectCssPropertyValueToBe(selector, cssProperty, compareValue); |
| 28 | + }); |
| 29 | +}); |
| 30 | + |
| 31 | +const errorRegexp = /Expected.*wrong.*|Received.*visible/; |
| 32 | + |
| 33 | +describe("assertion - expectCssPropertyValueToBe - element - error", function () { |
| 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"); |
| 36 | + await handleCookiesConsent(); |
| 37 | + }); |
| 38 | + |
| 39 | + it("Execution and Verification", async function () { |
| 40 | + const product = await nonUi5.element.getByXPath(selector); |
| 41 | + await expect(nonUi5.assertion.expectCssPropertyValueToBe(product, cssProperty, "wrong")) |
| 42 | + .rejects.toThrow(errorRegexp); |
| 43 | + }); |
| 44 | +}); |
| 45 | + |
| 46 | +describe("assertion - expectCssPropertyValueToBe - selector - error", function () { |
| 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"); |
| 49 | + await handleCookiesConsent(); |
| 50 | + }); |
| 51 | + |
| 52 | + it("Execution and Verification", async function () { |
| 53 | + await expect(nonUi5.assertion.expectCssPropertyValueToBe(selector, cssProperty, "wrong")) |
| 54 | + .rejects.toThrow(errorRegexp); |
| 55 | + }); |
| 56 | +}); |
0 commit comments