Spaces:
Running
Running
| from wix_login import login_to_wix | |
| EMAIL = "satishdevloper03@gmail.com" | |
| browser, context, page = login_to_wix( | |
| EMAIL, | |
| headless=False # Keep False for testing to see the flow | |
| ) | |
| print("🟢 Logged in successfully") | |
| input("Press ENTER to close browser...") | |
| browser.close() | |