@sap_oss/wdio-qmate-service
Version:
[](https://api.reuse.software/info/github.com/SAP/wdio-qmate-service)[](http
10 lines (9 loc) • 380 B
JavaScript
var chai = require("chai")
, should = chai.should();
describe("webdriver.io page", function () {
it("should have the right title", async function () {
await browser.navigateTo("https://webdriver.io");
const title = await browser.getTitle();
await title.should.be.equal("WebdriverIO · Next-gen browser and mobile automation test framework for Node.js");
});
});