Fixed balance logic for normal accounts
This commit is contained in:
parent
414de1008d
commit
4b90fd787b
1 changed files with 14 additions and 2 deletions
|
@ -39,8 +39,20 @@ namespace BankingBot.ActionManagers.AccountManagers
|
||||||
account.AccountNumber = container.FindElement(By.ClassName("account-number")).Text;
|
account.AccountNumber = container.FindElement(By.ClassName("account-number")).Text;
|
||||||
account.SortCode = container.FindElement(By.CssSelector("dd[aria-label='12 34 56']")).Text;
|
account.SortCode = container.FindElement(By.CssSelector("dd[aria-label='12 34 56']")).Text;
|
||||||
|
|
||||||
var balance = 0m;
|
string balanceTxt;
|
||||||
var balanceTxt = container.FindElement(By.ClassName("balance")).FindElement(By.TagName("span")).Text;
|
decimal balance;
|
||||||
|
|
||||||
|
// Split logic for getting Current Account AVAILABLE balance
|
||||||
|
// or a normal account's balance
|
||||||
|
try
|
||||||
|
{
|
||||||
|
balanceTxt = container.FindElement(By.ClassName("available-balance")).Text;
|
||||||
|
}
|
||||||
|
catch (NoSuchElementException)
|
||||||
|
{
|
||||||
|
balanceTxt = container.FindElement(By.ClassName("balance")).FindElement(By.TagName("span")).Text;
|
||||||
|
}
|
||||||
|
|
||||||
decimal.TryParse(balanceTxt, NumberStyles.Currency, new CultureInfo("en-GB"), out balance);
|
decimal.TryParse(balanceTxt, NumberStyles.Currency, new CultureInfo("en-GB"), out balance);
|
||||||
account.Balance = balance;
|
account.Balance = balance;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue