OTT_Bot / kb_builder /auth /test_login1.py
OnlyTheTruth03's picture
Initial RAG bot
709c859
raw
history blame contribute delete
283 Bytes
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()