it.only('Login should happen', ()=>{
cy.viewport(1280, 720)
cy.visit('https://thewesbsite.com') //not my actual website
//after entering website, we click on dashboard
cy.contains('Dashboard').click()
//then we click on Sign in with google
cy.contains('Sign in with Google').click()
//on clicking we are transferred to accounts.google.com page
cy.origin('https://google.com', ()=>{
cy.get('[aria-label="Email or phone"]]').click().type('uasjfn1000@gmail.com')
})
})