Skip to content

noodlescripter/ez-library_cypress

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

@ez-library/cypress

@ez-library/cypress is a javascript library for automation with cypress

Installation

Use the package manager NPM to install

npm install @ez-library/cypress

Usage

import ez from '@ez-library/cypress'

describe("Testing made easy with @ez-library/cypress", function(){
  it("Testing with  @ez-library/cypress", function(){
    ez.clickById("locator");
    ez.clickByCss("locator");
    ez.typeById("locator", "some text");
    ez.typeByCss("locator", "some text");
    ez.isDisplayed("locator").then(function(displayed){
       if(isDisplayed){
          ez.clickById("locator").click();
       }
    })
  });
});

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.