🎯 Goal
Create a desktop program or script (in Python or Node.js) that automatically opens real Chrome profiles, logs into 20 Three+ accounts, extracts the code (number) from the page after login, and adds it to the same CSV table.
🔹 Python + Playwright or Node.js + Puppeteer is the best choice because:
They allow running real Chrome with profiles, without headless mode and unnecessary emulations.
They work reliably even with Flutter Web sites (like Three+).
🔹 No login required — login is done via existing profiles, so risk of SMS verification is minimal (with proper user simulation).
🔹 Code collection via page.evaluate() — efficient and natural, especially when navigating through My Codes.
🔹 Delays, clicks, user behavior — important: mimic manual work (each profile opens separately, with pauses) — key to avoiding blocks.
🔹 CSV logic — correct: reading, checking, updating — all within one file, no unnecessary databases.
🔹 No headless, Selenium, or proxies — exactly what is needed for safe automation in such a sensitive environment.
✅ If implemented this way — the program will fully meet the requirements and work most reliably, like manual interaction.