@sap_oss/wdio-qmate-service
Version:
[](https://api.reuse.software/info/github.com/SAP/wdio-qmate-service)[](http
23 lines (20 loc) • 583 B
JavaScript
const path = require("path");
const merge = require("deepmerge");
const staticServerConfig = require("./staticServerConfig.js");
exports.config = merge(staticServerConfig.config, {
params: {
logUI5Version: false,
auth: {
formType: "custom",
username: "PURCHASER",
password: "super-duper-sensitive-pw",
usernameFieldSelector: "#username",
passwordFieldSelector: "#password",
logonButtonSelector: "#logon"
}
},
baseUrl: "http://localhost:34005/custom.html",
specs: [
path.resolve(__dirname, "specs/custom.spec.js")
]
});