1.0.4 • Published 1 year ago

@ez-library/wdio v1.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

@ez-lib/wdio

@ez-lib/wdio for automation testing with webdriverIO

Installation

Use the package manager NPM to install

npm install @ez-library/wdio

Usage

const ez = require("@ez-library/wdio");

describe("Testing made easy with wdio", function(){
  it("Testing with @ez-library/wdio", async function(){
        await ez.goTo("https://www.google.com/");
        await ez.byClassName("name").click();
        await ez.byId("ID").click();
        await ez.selectDDFeildByCss_BYINDEX("dropdown css", 1);
        await ez.selectDDFieldById_BYTEXT("dropdown id", "some text");
  });
});

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.