Skip to content

Commit

Permalink
bump to selenium 4.23, added executeasync passthrough impl
Browse files Browse the repository at this point in the history
  • Loading branch information
kelmelzer committed Jul 19, 2024
1 parent e9085e2 commit 1fa113a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Appium.Net/Appium.Net.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Selenium.Support" Version="4.21.0" />
<PackageReference Include="Selenium.WebDriver" Version="4.21.0" />
<PackageReference Include="Selenium.Support" Version="4.23.0" />
<PackageReference Include="Selenium.WebDriver" Version="4.23.0" />
<PackageReference Include="System.Drawing.Common" Version="8.0.6" />
</ItemGroup>
<ItemGroup>
Expand Down
2 changes: 2 additions & 0 deletions src/Appium.Net/Appium/Service/AppiumCommandExecutor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,8 @@ public Response Execute(Command commandToExecute)
}
}

public Task<Response> ExecuteAsync(Command commandToExecute) => Task.Run(() => this.Execute(commandToExecute));

/// <summary>
/// Handles a new session command, starts the service, and modifies the HTTP request header if necessary.
/// </summary>
Expand Down

0 comments on commit 1fa113a

Please sign in to comment.