3.4.0 • Published 1 year ago

cypress-reusable v3.4.0

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

cypress-reusable

✨ Installation

npm install cypress-reusable

In your support/e2e.js

Import this to your index.js to bring in all generic reusable commands

import "cypress-reusable";

In your test file

Import this into your test file to make use of custom commands in the package

import * as helper from "cypress-reusable/utils/helper";

💻 Usage

test.spec.js

import * as helper from "cypress-reusable/utils/helper";

describe("Example test", () => {
  it("Click and check", () => {
    helper.eleClick("clickElement");
    helper.eleCheck("checkElement");
  });
});

more functions coming later!

3.4.0

1 year ago

3.3.0

1 year ago

3.2.0

1 year ago

3.1.0

1 year ago

3.0.0

1 year ago

2.11.0

1 year ago

2.10.0

1 year ago

2.9.0

1 year ago

2.8.0

1 year ago

2.7.0

1 year ago

2.6.0

1 year ago

2.5.0

1 year ago

2.4.0

1 year ago

2.3.0

1 year ago

2.2.0

1 year ago

2.1.0

1 year ago

2.0.0

1 year ago

1.0.0

1 year ago