Skip to content

Commit

Permalink
Merge pull request #11 from pmahend1/dev
Browse files Browse the repository at this point in the history
dev to master - driver error fix
  • Loading branch information
pmahend1 authored Feb 18, 2021
2 parents 1906e69 + bb363a9 commit 4754503
Show file tree
Hide file tree
Showing 4 changed files with 188 additions and 127 deletions.
2 changes: 2 additions & 0 deletions .Net Core/MSRewards/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ public static class Constants

public const string ID_P = "id_p";

public const string ID_A = "id_a";

public const string B_Results = "b_results";

public const string H2 = "h2";
Expand Down
8 changes: 4 additions & 4 deletions .Net Core/MSRewards/MSRewards.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.0-preview1" />
<PackageReference Include="CommandLineParser" Version="2.8.0" />
<PackageReference Include="Selenium.Firefox.WebDriver" Version="0.27.0" />
<PackageReference Include="Selenium.Support" Version="4.0.0-alpha07" />
<PackageReference Include="Selenium.WebDriver" Version="4.0.0-alpha07" />
<PackageReference Include="Selenium.WebDriver.MSEdgeDriver" Version="89.0.711-pre" />
<PackageReference Include="Selenium.Support" Version="4.0.0-beta1" />
<PackageReference Include="Selenium.WebDriver" Version="4.0.0-beta1" />
<PackageReference Include="Selenium.WebDriver.MSEdgeDriver" Version="88.0.705.56" />
</ItemGroup>
</Project>
15 changes: 15 additions & 0 deletions .Net Core/MSRewards/PointStatus.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
namespace MSRewards
{
public class PointStatus
{
public int Current { get; set; }

public int Maximum { get; set; }

public PointStatus(int current, int max)
{
this.Current = current;
this.Maximum = max;
}
}
}
Loading

0 comments on commit 4754503

Please sign in to comment.