npm-cypress-project
v1.0.4
Published
### NPM Cypress Project This package provides encapsulated methods for automated testing with **Cypress**.
Readme
Special for my mentor!
It's a simple example, but with strong potential!
NPM Cypress Project
This package provides encapsulated methods for automated testing with Cypress.
🔹 Installation
npm install npm-cypress-project🚀 Usage
class LoginPage {
visit() {
cy.visit("/login");
}
login(username, password) {
cy.get("#username").type(username);
cy.get("#password").type(password);
cy.get("#submit").click();
}
helloVolodymyr(name){
console.log(`Hello, my mentor ${name}! Be in touch great idea!`);
}
}
export default new LoginPage();⚙️ Update
npm update npm-cypress-project