Topic: cypress - lecture 4 - login tests

//Regular lecture 30: 9-Nov-2022

/// <reference types = "Cypress"/>

//*Topic*// cypress- login tests //

//1) orange hrm login test

//A) correct username & password

describe("orange hrm login test",function(){

    it("with correct username & password", function(){
        cy.visit("https://opensource-demo.orangehrmlive.com/web/index.php/auth/login")
        cy.get('[name="username"]').type('Admin')
        cy.get('[name="password"]').type('admin123')
        cy.get('[type="submit"]').click()
        cy.get('[class="oxd-text oxd-text--h6 oxd-topbar-header-breadcrumb-module"]')
        .should('contain','Dashboard')
    })
})

टिप्पण्या