Screenshot from Cypress runner
describe('Microsoft Teams automation', () => {
it('Logs in and navigates to a channel', () => {
cy.visit('https://teams.microsoft.com/');
cy.get('input[type=email]').type('your-email-address');
cy.get('input[type=password]').type('your-password');
cy.get('button[type=submit]').click();
});
});
Email and password fields are not getting detected.