UNPKG

@sap_oss/wdio-qmate-service

Version:

[![REUSE status](https://api.reuse.software/badge/github.com/SAP/wdio-qmate-service)](https://api.reuse.software/info/github.com/SAP/wdio-qmate-service)[![Node.js CI](https://github.com/SAP/wdio-qmate-service/actions/workflows/node.js.yml/badge.svg)](http

74 lines (62 loc) 2.39 kB
const { handleCookiesConsent } = require("../../../helper/utils"); describe("userInteraction - doubleClick", function () { it("Preparation", async function () { await browser.navigateTo("https://sapui5.hana.ondemand.com/1.96.27/"); await handleCookiesConsent(); }); it("Execution", async function () { const selector = { "elementProperties": { "viewName": "sap.ui.documentation.sdk.view.App", "metadata": "sap.m.IconTabFilter", "id": "*apiMasterTab" } }; await ui5.userInteraction.doubleClick(selector, 0, 60000); }); it("Verification", async function () { await common.assertion.expectUrlToBe("https://sapui5.hana.ondemand.com/1.96.27/#/api"); }); }); describe("userInteraction - doubleClick on not displayed element", function () { it("Preparation", async function () { await browser.navigateTo("https://sapui5.hana.ondemand.com/1.96.27/"); await handleCookiesConsent(); }); it("Execution & Verification", async function () { const selector = { "elementProperties": { "viewName": "sap.ui.documentation.sdk.view.ApiDetailInitial", "metadata": "sap.ui.documentation.TitleLink", "text": "Main Controls" } }; const index = 0; const timeout = 30000; await expect(ui5.userInteraction.doubleClick(selector, index, timeout)) .rejects.toThrow(/uiControlExecuteLocator\(\): No visible elements found/); }); }); describe("userInteraction - doubleClick on invisible element", function () { it("Preparation", async function () { 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#/category/AC/product/HT-2000"); await handleCookiesConsent(); }); it("Execution & Verification", async function () { const selector = { "elementProperties": { "viewName": "sap.ui.demo.cart.view.Product", "metadata": "sap.m.Button", "text": [{ "path": "i18n>addToCartShort" }] } }; const index = 0; const timeout = 30000; await ui5.userInteraction.doubleClick(selector, index, timeout); await browser.pause(1000); await expect(ui5.userInteraction.doubleClick(selector, index, timeout)) .rejects.toThrow("Element not clickable after 30s"); }); });