diff --git a/BankingBot/Contracts/IProviderAccountManager.cs b/BankingBot/Contracts/IProviderAccountManager.cs index 5c27d8d..c3d24ca 100644 --- a/BankingBot/Contracts/IProviderAccountManager.cs +++ b/BankingBot/Contracts/IProviderAccountManager.cs @@ -1,9 +1,5 @@ using BankingBot.Models; -using System; using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; namespace BankingBot.Contracts { diff --git a/BankingBot/Contracts/IResponse.cs b/BankingBot/Contracts/IResponse.cs index 2c67ebc..cf45e40 100644 --- a/BankingBot/Contracts/IResponse.cs +++ b/BankingBot/Contracts/IResponse.cs @@ -1,9 +1,5 @@ using BankingBot.Enums; using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; namespace BankingBot.Contracts { diff --git a/BankingBot/Enums/TransactionType.cs b/BankingBot/Enums/TransactionType.cs index 13412a9..2e3f9f4 100644 --- a/BankingBot/Enums/TransactionType.cs +++ b/BankingBot/Enums/TransactionType.cs @@ -1,11 +1,7 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace BankingBot.Enums +namespace BankingBot.Enums { + // TODO: "WHAT DO ALL THESE MEAN!?" + // Make it more obvious what each flag represents public enum TransactionType { BGC, diff --git a/BankingBot/Extensions/IWebElementExtensions.cs b/BankingBot/Extensions/IWebElementExtensions.cs index e9a14ee..15a4e91 100644 --- a/BankingBot/Extensions/IWebElementExtensions.cs +++ b/BankingBot/Extensions/IWebElementExtensions.cs @@ -8,8 +8,7 @@ namespace BankingBot.Extensions { try { - element.FindElement(by); - return true; + return element.FindElement(by) != null; } catch (NoSuchElementException) { diff --git a/BankingBot/Helpers/AccountHelpers.cs b/BankingBot/Helpers/AccountHelpers.cs index a413736..a0dcf1b 100644 --- a/BankingBot/Helpers/AccountHelpers.cs +++ b/BankingBot/Helpers/AccountHelpers.cs @@ -1,8 +1,4 @@ using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; namespace BankingBot.Helpers { diff --git a/BankingBot/Models/Account.cs b/BankingBot/Models/Account.cs index 7133565..18155a6 100644 --- a/BankingBot/Models/Account.cs +++ b/BankingBot/Models/Account.cs @@ -1,10 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace BankingBot.Models +namespace BankingBot.Models { public class Account {