Interface LoginPage
- All Known Implementing Classes:
BosLoginPage
,SantanderLoginPage
,TargoBankLoginPage
public interface LoginPage
The login page of Bank
- Since:
- 2.6.0
- Author:
- Frank Münster
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Check if a user is logged in.void
Logging the given user.
-
Method Details
-
isLoggedIn
boolean isLoggedIn()Check if a user is logged in. There is no check if a specific account is logged in.- Returns:
true
if an user is logged in,false
else.
-
login
Logging the given user.- Parameters:
login
- the account to loginpassword
- the password- Throws:
WebSiteException
- if the login fails
-