mirror of
https://github.com/magicbug/Cloudlog
synced 2026-08-13 17:49:35 -04:00
Enhanced Cypress logbook tests for reliability by adding waits for login and page load, and improved assertions for table and button presence. Updated login command to use environment variables for credentials, allowing more flexible test configuration.
15 lines
672 B
JavaScript
15 lines
672 B
JavaScript
Cypress.Commands.add("login", () => {
|
|
// Use environment variables or change these to your actual test credentials
|
|
const username = Cypress.env('username') || "m0abc";
|
|
const password = Cypress.env('password') || "demo";
|
|
cy.visit("/index.php/user/login");
|
|
cy.get('input[name="user_name"]').type(username);
|
|
cy.get('input[name="user_password"]').type(password);
|
|
cy.get('button[type="submit"]').click();
|
|
});
|
|
|
|
// Custom command to wait for select elements to be populated
|
|
Cypress.Commands.add("waitForSelectOptions", (selector, minOptions = 1) => {
|
|
cy.get(selector).should('be.visible');
|
|
cy.get(`${selector} option`).should('have.length.greaterThan', minOptions);
|
|
});
|