Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OSOE-537: Migrate from Selenium.Axe to TWP.Selenium.Axe.Html in Lombiq.UITestingToolbox #380

Merged
merged 1 commit into from
Jun 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Selenium.Axe;
using Deque.AxeCore.Commons;
using System;

namespace Lombiq.Tests.UI.Exceptions;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using Deque.AxeCore.Commons;
using Deque.AxeCore.Selenium;
using Lombiq.Tests.UI.Services;
using Selenium.Axe;
using System;
using System.Threading.Tasks;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
using Deque.AxeCore.Commons;
using Deque.AxeCore.Selenium;
using Lombiq.Tests.UI.Exceptions;
using Lombiq.Tests.UI.Services;
using Selenium.Axe;
using System;
using System.IO;
using TWP.Selenium.Axe.Html;

namespace Lombiq.Tests.UI.Extensions;

Expand Down
2 changes: 1 addition & 1 deletion Lombiq.Tests.UI/Extensions/AxeResultItemExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using Deque.AxeCore.Commons;
using Lombiq.Tests.UI.Services;
using Selenium.Axe;
using Shouldly;
using System.Collections.Generic;

Expand Down
4 changes: 3 additions & 1 deletion Lombiq.Tests.UI/Lombiq.Tests.UI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@
<PackageReference Include="Azure.Storage.Blobs" Version="12.19.1" />
<PackageReference Include="Ben.Demystifier" Version="0.4.1" />
<PackageReference Include="Codeuctivity.ImageSharpCompare" Version="4.0.258" />
<PackageReference Include="Deque.AxeCore.Commons" Version="4.9.1" />
<PackageReference Include="Deque.AxeCore.Selenium" Version="4.9.1" />
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" />
<PackageReference Include="Microsoft.SqlServer.DACFx" Version="162.2.111" />
Expand All @@ -77,9 +79,9 @@
<PackageReference Include="OrchardCore.Recipes.Core" Version="1.8.0" />
<PackageReference Include="Refit.HttpClientFactory" Version="7.0.0" />
<PackageReference Include="Sarif.Sdk" Version="4.5.4" />
<PackageReference Include="Selenium.Axe" Version="4.0.17" />
<PackageReference Include="Shouldly" Version="4.2.1" />
<PackageReference Include="System.Linq.Async" Version="6.0.1" />
<PackageReference Include="TWP.Selenium.Axe.Html" Version="1.0.0" />
<PackageReference Include="xunit" Version="2.8.0" />
<PackageReference Include="YamlDotNet" Version="15.1.4" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using Deque.AxeCore.Commons;
using Deque.AxeCore.Selenium;
using Lombiq.Tests.UI.Extensions;
using Lombiq.Tests.UI.Helpers;
using Selenium.Axe;
using System;
using System.Collections.Generic;
using System.Linq;
Expand Down
2 changes: 1 addition & 1 deletion Lombiq.Tests.UI/Services/UITestExecutionSession.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
using Microsoft.VisualBasic.FileIO;
using Mono.Unix;
using Newtonsoft.Json.Linq;
using Selenium.Axe;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using TWP.Selenium.Axe.Html;
using Xunit.Abstractions;
using Xunit.Sdk;

Expand Down