Hello. I am a beginner with cypress and I have a problem with my code.
I create a small test that login into the web page. Below is my code.. I am using cypress 10.3.0 version.
/**
* Use Case: Login to IOM web workplace
*
*/
describe("login", function () {
it("Initial Login", function () {
cy.visit('')
cy.wait(3000)
cy.once('uncaught:exception', () => false)
cy.get('#singInButton').click()
cy.get('#userNameInput').type('administrator@iomind.abb.com')
cy.get('#passwordInput').type('welcome123#')
cy.get('#submitButton').click()
cy.wait(10000)
cy.get('div.hmi__header__drawer-menu').click()
});
});