1
1
mirror of https://github.com/KenanZhu/AutoLibrary.git synced 2026-06-18 07:23:03 +08:00

fix(LibLogin): more clear error message

This commit is contained in:
2025-11-09 19:52:21 +08:00
parent f0c25903a3
commit 87abb45de3
+2 -2
View File
@@ -51,8 +51,8 @@ class LibLogin(LibOperator):
EC.presence_of_element_located((By.CLASS_NAME, "selectContent")) EC.presence_of_element_located((By.CLASS_NAME, "selectContent"))
) )
return True return True
except Exception as e: except:
self._showTrace(f"登录页面加载失败 ! : {e}") self._showTrace(f"登录页面加载失败 ! : 用户账号或者密码错误/验证码错误, 具体以页面提示为准")
return False return False