Skip to content

Commit

Permalink
Updated Selenium utils to add more logging
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasherceg committed Aug 12, 2023
1 parent 21d62d2 commit 5063911
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
3 changes: 2 additions & 1 deletion src/Samples/Tests/Tests/Complex/SPAErrorReportingTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
using DotVVM.Samples.Tests.Base;
using DotVVM.Testing.Abstractions;
using OpenQA.Selenium.Chrome;
using OpenQA.Selenium.Chromium;
using Riganti.Selenium.Core;
using Riganti.Selenium.Core.Abstractions.Attributes;
using Riganti.Selenium.DotVVM;
Expand Down Expand Up @@ -31,7 +32,7 @@ public void Complex_SPAErrorReporting_NavigationAndPostbacks()
void SetOfflineMode(bool offline)
{
((ChromeDriver)browser.Driver).NetworkConditions = new ChromeNetworkConditions() {
((ChromeDriver)browser.Driver).NetworkConditions = new ChromiumNetworkConditions() {
IsOffline = offline,
Latency = TimeSpan.FromMilliseconds(5),
DownloadThroughput = 500 * 1024,
Expand Down
16 changes: 8 additions & 8 deletions src/Samples/Tests/Tests/DotVVM.Samples.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,21 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
<PackageReference Include="System.Text.Encoding.CodePages" Version="5.0.0" />
<PackageReference Include="System.ValueTuple" Version="4.4.0" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Riganti.Selenium.Coordinator.Client" Version="3.0.0-preview09-final" />
<PackageReference Include="Riganti.Selenium.Core" Version="3.0.0-preview09-final" />
<PackageReference Include="Riganti.Selenium.Core.Abstractions" Version="3.0.0-preview09-final" />
<PackageReference Include="Riganti.Selenium.DotVVM" Version="3.0.0-preview09-final" />
<PackageReference Include="Riganti.Selenium.AssertApi" Version="3.0.0-preview09-final" />
<PackageReference Include="Riganti.Selenium.xUnitIntegration" Version="3.0.0-preview09-final" />
<PackageReference Include="Riganti.Selenium.Validators" Version="3.0.0-preview09-final" />
<PackageReference Include="Riganti.Selenium.Coordinator.Client" Version="3.0.0-preview11-final" />
<PackageReference Include="Riganti.Selenium.Core" Version="3.0.0-preview11-final" />
<PackageReference Include="Riganti.Selenium.Core.Abstractions" Version="3.0.0-preview11-final" />
<PackageReference Include="Riganti.Selenium.DotVVM" Version="3.0.0-preview11-final" />
<PackageReference Include="Riganti.Selenium.AssertApi" Version="3.0.0-preview11-final" />
<PackageReference Include="Riganti.Selenium.xUnitIntegration" Version="3.0.0-preview11-final" />
<PackageReference Include="Riganti.Selenium.Validators" Version="3.0.0-preview11-final" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 5063911

Please sign in to comment.