OTT_Bot / kb_builder /auth /test_login.py
OnlyTheTruth03's picture
Initial RAG bot
709c859
raw
history blame contribute delete
226 Bytes
import os
from wix_login import login_to_wix
EMAIL = os.getenv("WIX_EMAIL")
browser, context, page, playwright = login_to_wix(EMAIL)
input("๐Ÿ”’ Browser is open. Press ENTER to close...")
browser.close()
playwright.stop()