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

41 lines (37 loc) 922 B
const path = require("path"); const merge = require("deepmerge"); const profile = require("../../../helper/configurations/chrome.conf"); exports.config = merge(profile.config, { maxInstances: 6, specFileRetries: 2, params: { highlightElements: { enable: true, duration: 2000, color: "green", actions: ["ui5.userInteraction.click", "ui5.userInteraction.fill"] } }, baseUrl: "http://localhost:34005/", specs: [ path.resolve(__dirname, "elementHighlight.spec.js") ], services: [ [ "static-server", { port: 34005, folders: [ { mount: "/buttons.html", path: path.resolve(__dirname, "../../../helper/website/buttons.html") }, { mount: "/forms.html", path: path.resolve(__dirname, "../../../helper/website/forms.html") }, ] } ] ] });