Dependancies
This commit is contained in:
parent
e5e1153c76
commit
d5221fd247
19 changed files with 38107 additions and 9 deletions
BIN
.vs/BankingBot/v14/.suo
Normal file
BIN
.vs/BankingBot/v14/.suo
Normal file
Binary file not shown.
|
@ -31,10 +31,6 @@
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<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" />
|
||||||
<Reference Include="System.Core" />
|
<Reference Include="System.Core" />
|
||||||
<Reference Include="System.Drawing" />
|
<Reference Include="System.Drawing" />
|
||||||
|
@ -44,8 +40,8 @@
|
||||||
<Reference Include="System.Data" />
|
<Reference Include="System.Data" />
|
||||||
<Reference Include="System.Net.Http" />
|
<Reference Include="System.Net.Http" />
|
||||||
<Reference Include="System.Xml" />
|
<Reference Include="System.Xml" />
|
||||||
<Reference Include="WebDriver, Version=3.0.1.0, Culture=neutral, processorArchitecture=MSIL">
|
<Reference Include="WebDriver, Version=3.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\Selenium.WebDriver.3.0.1\lib\net40\WebDriver.dll</HintPath>
|
<HintPath>..\packages\Selenium.WebDriver.3.0.0\lib\net40\WebDriver.dll</HintPath>
|
||||||
<Private>True</Private>
|
<Private>True</Private>
|
||||||
</Reference>
|
</Reference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
|
@ -20,6 +20,11 @@ namespace BankingBot
|
||||||
|
|
||||||
public ILoginCredentials LoginCredentials { get; private set; }
|
public ILoginCredentials LoginCredentials { get; private set; }
|
||||||
|
|
||||||
|
public bool IsLoggedIn
|
||||||
|
{
|
||||||
|
get { return LoginCredentials != null; }
|
||||||
|
}
|
||||||
|
|
||||||
public Client()
|
public Client()
|
||||||
{
|
{
|
||||||
BrowserBot = new BrowserBot<T>();
|
BrowserBot = new BrowserBot<T>();
|
||||||
|
@ -30,9 +35,9 @@ namespace BankingBot
|
||||||
|
|
||||||
public void Login(ILoginCredentials credentials)
|
public void Login(ILoginCredentials credentials)
|
||||||
{
|
{
|
||||||
LoginCredentials = credentials;
|
|
||||||
|
|
||||||
_loginManager.Login(credentials);
|
_loginManager.Login(credentials);
|
||||||
|
|
||||||
|
LoginCredentials = credentials;
|
||||||
}
|
}
|
||||||
|
|
||||||
public decimal GetBalance()
|
public decimal GetBalance()
|
||||||
|
|
BIN
BankingBot/bin/Debug/BankingBot.dll
Normal file
BIN
BankingBot/bin/Debug/BankingBot.dll
Normal file
Binary file not shown.
BIN
BankingBot/bin/Debug/BankingBot.pdb
Normal file
BIN
BankingBot/bin/Debug/BankingBot.pdb
Normal file
Binary file not shown.
BIN
BankingBot/bin/Debug/WebDriver.dll
Normal file
BIN
BankingBot/bin/Debug/WebDriver.dll
Normal file
Binary file not shown.
|
@ -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\obj\Debug\BankingBot.csprojResolveAssemblyReference.cache
|
||||||
C:\src\aaron\BankingBot\BankingBot\bin\Debug\WebDriver.dll
|
C:\src\aaron\BankingBot\BankingBot\bin\Debug\WebDriver.dll
|
||||||
C:\src\aaron\BankingBot\BankingBot\bin\Debug\WebDriver.xml
|
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.
BIN
BankingBot/obj/Debug/BankingBot.dll
Normal file
BIN
BankingBot/obj/Debug/BankingBot.dll
Normal file
Binary file not shown.
BIN
BankingBot/obj/Debug/BankingBot.pdb
Normal file
BIN
BankingBot/obj/Debug/BankingBot.pdb
Normal file
Binary file not shown.
Binary file not shown.
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<packages>
|
<packages>
|
||||||
<package id="Ninject" version="3.2.2.0" targetFramework="net452" />
|
<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>
|
</packages>
|
BIN
packages/Selenium.WebDriver.3.0.0/Selenium.WebDriver.3.0.0.nupkg
vendored
Normal file
BIN
packages/Selenium.WebDriver.3.0.0/Selenium.WebDriver.3.0.0.nupkg
vendored
Normal file
Binary file not shown.
BIN
packages/Selenium.WebDriver.3.0.0/lib/net35/WebDriver.dll
vendored
Normal file
BIN
packages/Selenium.WebDriver.3.0.0/lib/net35/WebDriver.dll
vendored
Normal file
Binary file not shown.
18912
packages/Selenium.WebDriver.3.0.0/lib/net35/WebDriver.xml
vendored
Normal file
18912
packages/Selenium.WebDriver.3.0.0/lib/net35/WebDriver.xml
vendored
Normal file
File diff suppressed because it is too large
Load diff
BIN
packages/Selenium.WebDriver.3.0.0/lib/net40/WebDriver.dll
vendored
Normal file
BIN
packages/Selenium.WebDriver.3.0.0/lib/net40/WebDriver.dll
vendored
Normal file
Binary file not shown.
19178
packages/Selenium.WebDriver.3.0.0/lib/net40/WebDriver.xml
vendored
Normal file
19178
packages/Selenium.WebDriver.3.0.0/lib/net40/WebDriver.xml
vendored
Normal file
File diff suppressed because it is too large
Load diff
BIN
packages/Selenium.WebDriver.3.0.1/lib/net35/WebDriver.dll
vendored
Normal file
BIN
packages/Selenium.WebDriver.3.0.1/lib/net35/WebDriver.dll
vendored
Normal file
Binary file not shown.
BIN
packages/Selenium.WebDriver.3.0.1/lib/net40/WebDriver.dll
vendored
Normal file
BIN
packages/Selenium.WebDriver.3.0.1/lib/net40/WebDriver.dll
vendored
Normal file
Binary file not shown.
Loading…
Add table
Reference in a new issue