refactor: update print statements for improved user feedback and change activation URLs in LicenseManager

- Modified print statements in cursor_pro_keep_alive.py and get_veri_code.py for clearer user prompts during execution.
- Updated activation and verification URLs in LicenseManager to point to the new server.
- Enhanced user experience by providing more informative messages during the verification and account registration processes.
This commit is contained in:
cheng zhen
2025-01-03 16:13:43 +08:00
parent 8a5db8e84e
commit 23d860836b
3 changed files with 17 additions and 17 deletions

View File

@@ -13,7 +13,7 @@ class EmailVerificationHandler:
code = None
try:
print("打开邮箱页面")
print("正在处理...")
# 打开新标签页访问临时邮箱
tab_mail = self.browser.new_tab(self.mail_url)
self.browser.activate_tab(tab_mail)
@@ -65,9 +65,9 @@ class EmailVerificationHandler:
)
if verification_code:
code = verification_code.group(1)
print(f"验证码:{code}")
print("马上就要成功了")
else:
print("未找到验证码")
print("执行失败")
return code