Dependancies

This commit is contained in:
AaronJamesY 2017-01-25 19:24:28 +00:00
parent e5e1153c76
commit d5221fd247
19 changed files with 38107 additions and 9 deletions

BIN
.vs/BankingBot/v14/.suo Normal file

Binary file not shown.

View file

@ -31,10 +31,6 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Ninject, Version=3.2.0.0, Culture=neutral, PublicKeyToken=c7192dc5380945e7, processorArchitecture=MSIL">
<HintPath>..\packages\Ninject.3.2.2.0\lib\net45-full\Ninject.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Drawing" />
@ -44,8 +40,8 @@
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
<Reference Include="WebDriver, Version=3.0.1.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Selenium.WebDriver.3.0.1\lib\net40\WebDriver.dll</HintPath>
<Reference Include="WebDriver, Version=3.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Selenium.WebDriver.3.0.0\lib\net40\WebDriver.dll</HintPath>
<Private>True</Private>
</Reference>
</ItemGroup>

View file

@ -20,6 +20,11 @@ namespace BankingBot
public ILoginCredentials LoginCredentials { get; private set; }
public bool IsLoggedIn
{
get { return LoginCredentials != null; }
}
public Client()
{
BrowserBot = new BrowserBot<T>();
@ -30,9 +35,9 @@ namespace BankingBot
public void Login(ILoginCredentials credentials)
{
LoginCredentials = credentials;
_loginManager.Login(credentials);
LoginCredentials = credentials;
}
public decimal GetBalance()

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -7,3 +7,10 @@ C:\src\aaron\BankingBot\BankingBot\obj\Debug\BankingBot.pdb
C:\src\aaron\BankingBot\BankingBot\obj\Debug\BankingBot.csprojResolveAssemblyReference.cache
C:\src\aaron\BankingBot\BankingBot\bin\Debug\WebDriver.dll
C:\src\aaron\BankingBot\BankingBot\bin\Debug\WebDriver.xml
C:\Working Files\banking-bot\BankingBot\bin\Debug\BankingBot.dll
C:\Working Files\banking-bot\BankingBot\bin\Debug\BankingBot.pdb
C:\Working Files\banking-bot\BankingBot\bin\Debug\WebDriver.dll
C:\Working Files\banking-bot\BankingBot\bin\Debug\WebDriver.xml
C:\Working Files\banking-bot\BankingBot\obj\Debug\BankingBot.csprojResolveAssemblyReference.cache
C:\Working Files\banking-bot\BankingBot\obj\Debug\BankingBot.dll
C:\Working Files\banking-bot\BankingBot\obj\Debug\BankingBot.pdb

Binary file not shown.

Binary file not shown.

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Ninject" version="3.2.2.0" targetFramework="net452" />
<package id="Selenium.WebDriver" version="3.0.1" targetFramework="net461" />
<package id="Selenium.WebDriver" version="3.0.0" targetFramework="net461" />
</packages>

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load diff

Binary file not shown.

File diff suppressed because it is too large Load diff

Binary file not shown.

Binary file not shown.