Class BosDetailsPage
- java.lang.Object
-
- de.frankmuenster.mahoe.web.webpages.SeleniumWebPage
-
- de.frankmuenster.mahoe.web.webpages.AbstractAccountPage<BosWebAccountInformation>
-
- de.frankmuenster.mahoe.banks.bos.webpages.BosAccountPage
-
- de.frankmuenster.mahoe.banks.bos.webpages.BosDetailsPage
-
- All Implemented Interfaces:
DetailsPage
public class BosDetailsPage extends BosAccountPage implements DetailsPage
The Bank of Scotland details page to retrieve account details- Since:
- 2.6.0
- Author:
- Frank MÜnster
-
-
Field Summary
-
Fields inherited from class de.frankmuenster.mahoe.web.webpages.AbstractAccountPage
accountInfo
-
Fields inherited from class de.frankmuenster.mahoe.web.webpages.SeleniumWebPage
driver
-
-
Constructor Summary
Constructors Constructor Description BosDetailsPage(org.openqa.selenium.WebDriver driver, BosWebAccountInformation accountInfo)
Creates a new instance of the details page, opens it and extracts mandatory values.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.math.BigDecimal
getAvailableAmount()
Returns the available amount.java.lang.String
getBIC()
java.math.BigDecimal
getCreditLimit()
Return the limit of the credit card.java.time.LocalDate
getLastTransaction()
Return the date of the last transaction.java.time.LocalDate
getNextBill()
Return the date of the next credit card bill.java.time.LocalDate
getNextSubtraction()
Return the date of the next automatic subtraction.java.lang.String
getProductDescription()
The description of the credit card.java.math.BigDecimal
getSaldo()
The actual saldo.-
Methods inherited from class de.frankmuenster.mahoe.banks.bos.webpages.BosAccountPage
open, openDetails
-
Methods inherited from class de.frankmuenster.mahoe.web.webpages.SeleniumWebPage
elementExist
-
-
-
-
Constructor Detail
-
BosDetailsPage
public BosDetailsPage(org.openqa.selenium.WebDriver driver, BosWebAccountInformation accountInfo) throws WebSiteException
Creates a new instance of the details page, opens it and extracts mandatory values.- Parameters:
driver
- the Selenium WebDriver with the logged in accountaccountInfo
- the account info object- Throws:
WebSiteException
- in case the details page could not be opened or mandatory values could not by extracted.
-
-
Method Detail
-
getAvailableAmount
public java.math.BigDecimal getAvailableAmount() throws WebSiteException
Description copied from interface:DetailsPage
Returns the available amount.- Specified by:
getAvailableAmount
in interfaceDetailsPage
- Returns:
- the available amount
- Throws:
WebSiteException
- in case the value could not be read from the details hover page
-
getBIC
public java.lang.String getBIC()
-
getCreditLimit
public java.math.BigDecimal getCreditLimit() throws WebSiteException
Description copied from interface:DetailsPage
Return the limit of the credit card.- Specified by:
getCreditLimit
in interfaceDetailsPage
- Returns:
- the credit card limit
- Throws:
WebSiteException
- in case the value could not be read from the details hover page
-
getLastTransaction
public java.time.LocalDate getLastTransaction() throws WebSiteException
Description copied from interface:DetailsPage
Return the date of the last transaction.- Specified by:
getLastTransaction
in interfaceDetailsPage
- Returns:
- date of the last transaction
- Throws:
WebSiteException
- in case the value could not be read from the details hover page
-
getNextBill
public java.time.LocalDate getNextBill() throws WebSiteException
Description copied from interface:DetailsPage
Return the date of the next credit card bill.- Specified by:
getNextBill
in interfaceDetailsPage
- Returns:
- date of the next credit card bill
- Throws:
WebSiteException
- in case the value could not be read from the details hover page
-
getNextSubtraction
public java.time.LocalDate getNextSubtraction() throws WebSiteException
Description copied from interface:DetailsPage
Return the date of the next automatic subtraction.- Specified by:
getNextSubtraction
in interfaceDetailsPage
- Returns:
- date of the next automatic subtraction
- Throws:
WebSiteException
- in case the value could not be read from the details hover page
-
getProductDescription
public java.lang.String getProductDescription() throws WebSiteException
Description copied from interface:DetailsPage
The description of the credit card.- Specified by:
getProductDescription
in interfaceDetailsPage
- Returns:
- the credit card description
- Throws:
WebSiteException
- in case the value could not be read from the details hover page
-
getSaldo
public java.math.BigDecimal getSaldo() throws WebSiteException
Description copied from interface:DetailsPage
The actual saldo.- Specified by:
getSaldo
in interfaceDetailsPage
- Returns:
- the saldo
- Throws:
WebSiteException
- in case the value could not be read from the details hover page
-
-