Skip to content

Commit 476729b

Browse files
authored
Update to Selenium v.4.31.0 +semver:feature (#126)
1 parent 0f36db6 commit 476729b

File tree

8 files changed

+31
-31
lines changed

8 files changed

+31
-31
lines changed

Aquality.Selenium.Core/src/Aquality.Selenium.Core/Aquality.Selenium.Core.csproj

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<RepositoryType>git</RepositoryType>
1515
<PackageTags>selenium webdriver automation</PackageTags>
1616
<PackageLicenseFile>LICENSE</PackageLicenseFile>
17-
<Copyright>Copyright 2024 Aquality Automation</Copyright>
17+
<Copyright>Copyright 2025 Aquality Automation</Copyright>
1818
<IsPackable>true</IsPackable>
1919
</PropertyGroup>
2020

@@ -48,12 +48,12 @@
4848
</ItemGroup>
4949
<ItemGroup>
5050
<PackageReference Include="DotNetSeleniumExtras.PageObjects" Version="3.11.0" />
51-
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.0" />
52-
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.0" />
51+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.4" />
52+
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.4" />
5353
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
54-
<PackageReference Include="NLog" Version="5.3.4" />
55-
<PackageReference Include="Selenium.Support" Version="4.27.0" />
56-
<PackageReference Include="Selenium.WebDriver" Version="4.27.0" />
57-
<PackageReference Include="SkiaSharp" Version="2.88.9" />
54+
<PackageReference Include="NLog" Version="5.4.0" />
55+
<PackageReference Include="Selenium.Support" Version="4.31.0" />
56+
<PackageReference Include="Selenium.WebDriver" Version="4.31.0" />
57+
<PackageReference Include="SkiaSharp" Version="3.116.1" />
5858
</ItemGroup>
5959
</Project>

Aquality.Selenium.Core/src/Aquality.Selenium.Core/Aquality.Selenium.Core.xml

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Aquality.Selenium.Core/src/Aquality.Selenium.Core/Utilities/ActionRetrier.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public ActionRetrier(IRetryConfiguration retryConfiguration)
2020
}
2121

2222
/// <summary>
23-
/// Retries the action when one of the handledExceptions occures.
23+
/// Retries the action when one of the handledExceptions occurs.
2424
/// </summary>
2525
/// <param name="action">Action to be applied.</param>
2626
/// <param name="handledExceptions">Exceptions to be handled.</param>
@@ -34,7 +34,7 @@ public virtual void DoWithRetry(Action action, IEnumerable<Type> handledExceptio
3434
}
3535

3636
/// <summary>
37-
/// Retries the action when one of the handledExceptions occures.
37+
/// Retries the action when one of the handledExceptions occurs.
3838
/// </summary>
3939
/// <typeparam name="T">Return type of function.</typeparam>
4040
/// <param name="function">Function to be applied.</param>
@@ -71,7 +71,7 @@ public virtual T DoWithRetry<T>(Func<T> function, IEnumerable<Type> handledExcep
7171
}
7272

7373
/// <summary>
74-
/// Decides should the occured exception be handled (ignored during the retry) or not.
74+
/// Decides should the occurred exception be handled (ignored during the retry) or not.
7575
/// </summary>
7676
/// <param name="handledExceptions">Exceptions to be handled.</param>
7777
/// <param name="exception">Exception to proceed.</param>

Aquality.Selenium.Core/src/Aquality.Selenium.Core/Utilities/ElementActionRetrier.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
namespace Aquality.Selenium.Core.Utilities
77
{
88
/// <summary>
9-
/// Retries an action or function when <see cref="HandledExceptions"/> occures.
9+
/// Retries an action or function when <see cref="HandledExceptions"/> occurs.
1010
/// </summary>
1111
public class ElementActionRetrier : ActionRetrier, IElementActionRetrier
1212
{
@@ -32,7 +32,7 @@ public ElementActionRetrier(IRetryConfiguration retryConfiguration) : base(retry
3232
public virtual IEnumerable<Type> HandledExceptions { get; set; }
3333

3434
/// <summary>
35-
/// Retries the action when the handled exception <see cref="HandledExceptions"/> occures.
35+
/// Retries the action when the handled exception <see cref="HandledExceptions"/> occurs.
3636
/// </summary>
3737
/// <param name="action">Action to be applied.</param>
3838
/// <param name="handledExceptions">Exceptions to be handled.</param>
@@ -43,7 +43,7 @@ public override void DoWithRetry(Action action, IEnumerable<Type> handledExcepti
4343
}
4444

4545
/// <summary>
46-
/// Retries the function when <see cref="HandledExceptions"/> occures.
46+
/// Retries the function when <see cref="HandledExceptions"/> occurs.
4747
/// </summary>
4848
/// <typeparam name="T">Return type of function.</typeparam>
4949
/// <param name="function">Function to be applied.</param>

Aquality.Selenium.Core/src/Aquality.Selenium.Core/Utilities/IActionRetrier.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ namespace Aquality.Selenium.Core.Utilities
99
public interface IActionRetrier
1010
{
1111
/// <summary>
12-
/// Retries the action when one of the handledExceptions occures.
12+
/// Retries the action when one of the handledExceptions occurs.
1313
/// </summary>
1414
/// <param name="action">Action to be applied.</param>
1515
/// <param name="handledExceptions">Exceptions to be handled.</param>
1616
void DoWithRetry(Action action, IEnumerable<Type> handledExceptions = null);
1717

1818
/// <summary>
19-
/// Retries the action when one of the handledExceptions occures.
19+
/// Retries the action when one of the handledExceptions occurs.
2020
/// </summary>
2121
/// <typeparam name="T">Return type of function.</typeparam>
2222
/// <param name="function">Function to be applied.</param>

Aquality.Selenium.Core/src/Aquality.Selenium.Core/Utilities/IElementActionRetrier.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
namespace Aquality.Selenium.Core.Utilities
66
{
77
/// <summary>
8-
/// Retries an action or function when one of <see cref="HandledExceptions"/> occures.
8+
/// Retries an action or function when one of <see cref="HandledExceptions"/> occurs.
99
/// </summary>
1010
public interface IElementActionRetrier : IActionRetrier
1111
{

Aquality.Selenium.Core/tests/Aquality.Selenium.Core.Tests/Aquality.Selenium.Core.Tests.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@
2525
</ItemGroup>
2626

2727
<ItemGroup>
28-
<PackageReference Include="Appium.WebDriver" Version="6.0.1" />
29-
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.0" />
30-
<PackageReference Include="nunit" Version="4.2.2" />
31-
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0">
28+
<PackageReference Include="Appium.WebDriver" Version="7.2.0" />
29+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.4" />
30+
<PackageReference Include="nunit" Version="4.3.2" />
31+
<PackageReference Include="NUnit3TestAdapter" Version="5.0.0">
3232
<PrivateAssets>all</PrivateAssets>
3333
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3434
</PackageReference>
35-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
35+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
3636
</ItemGroup>
3737

3838
<ItemGroup>

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright 2024 Aquality Automation
189+
Copyright 2025 Aquality Automation
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)