Verify login form elements using cy.get() with CSS selectors
Preconditions (1)
Step 1: Use cy.get() with CSS selector '#email' to find the email input field
Step 2: Type 'user@example.com' into the email input field
Step 3: Use cy.get() with CSS selector '.password-input' to find the password input field
Step 4: Type 'Password123' into the password input field
Step 5: Use cy.get() with CSS selector 'button[type="submit"]' to find the login button
Step 6: Click the login button
Step 7: Use cy.get() with CSS selector '.welcome-message' to find the welcome message element
✅ Expected Result: The welcome message element is visible and contains the text 'Welcome, user!'