//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')
})
})
टिप्पण्या
टिप्पणी पोस्ट करा
आपल्या प्रतिक्रियेबद्दल धन्यवाद ! आम्ही लवकरात लवकर प्रतिक्रियेला उत्तर देण्याचा प्रयत्न करू