Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
2 changes: 1 addition & 1 deletion examples/dotnet/SeleniumDocs/BaseTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class BaseTest
protected IWebDriver driver;
protected Uri GridUrl;
private Process _webserverProcess;
private const string ServerJarName = "selenium-server-4.41.0.jar";
private const string ServerJarName = "selenium-server-4.43.0.jar";
private static readonly string BaseDirectory = AppContext.BaseDirectory;
private const string RelativePathToGrid = "../../../../../";
private readonly string _examplesDirectory = Path.GetFullPath(Path.Combine(BaseDirectory, RelativePathToGrid));
Expand Down
6 changes: 3 additions & 3 deletions examples/python/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def server_old(request):
os.path.abspath(__file__)
)
),
"selenium-server-4.41.0.jar",
"selenium-server-4.43.0.jar",
)

def wait_for_server(url, timeout):
Expand Down Expand Up @@ -207,7 +207,7 @@ def server():
)
)
),
"selenium-server-4.41.0.jar",
"selenium-server-4.43.0.jar",
)

args = [
Expand Down Expand Up @@ -280,7 +280,7 @@ def grid_server():
)
)
),
"selenium-server-4.41.0.jar",
"selenium-server-4.43.0.jar",
)

args = [
Expand Down
2 changes: 1 addition & 1 deletion examples/ruby/spec/drivers/remote_webdriver_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
let(:target_directory) { File.join(Dir.tmpdir, SecureRandom.uuid) }
let(:wait) { Selenium::WebDriver::Wait.new(timeout: 2) }
let(:server) do
Selenium::Server.new(File.expand_path(File.join('..', '..', '..', 'selenium-server-4.41.0.jar'), __dir__),
Selenium::Server.new(File.expand_path(File.join('..', '..', '..', 'selenium-server-4.43.0.jar'), __dir__),
background: true,
args: %w[--selenium-manager true --enable-managed-downloads true])
end
Expand Down
Binary file not shown.
4 changes: 2 additions & 2 deletions website_and_docs/layouts/downloads/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<div class="card-body">
<p class="card-text">
Latest stable version
<a href="https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.41.0/selenium-server-4.41.0.jar">4.41.0</a>
<a href="https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.43.0/selenium-server-4.43.0.jar">4.43.0</a>
</p>
<p class="card-text">
To use the Selenium Server in a Grid configuration, see the
Expand Down Expand Up @@ -115,7 +115,7 @@ <h2 class="card-title">
<div class="card-body">
<h2 class="card-title">C# NuGet</h2>
<p class="card-text w-lg-75">
Nuget latest release is 4.41.0 Released on February 20, 2026.
Nuget latest release is 4.43.0 Released on April 10, 2026.
</p>
<ul>
<li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ <h2 id="bindings" class="card-title">Selenium Clients and WebDriver Language Bin
<p class="card-text m-0 pb-1">
Stable:
<a href="https://www.nuget.org/packages/Selenium.WebDriver" class="card-link">
4.41.0 (February 20, 2026)
4.43.0 (April 10, 2026)
</a>
</p>
<p class="card-text m-0 pb-1">
Expand All @@ -54,8 +54,8 @@ <h2 id="bindings" class="card-title">Selenium Clients and WebDriver Language Bin
</p>
<p class="card-text m-0 pb-1">
Stable:
<a href="https://rubygems.org/gems/selenium-webdriver/versions/4.41.0" class="card-link">
4.41.0 (February 20, 2026)
<a href="https://rubygems.org/gems/selenium-webdriver/versions/4.43.0" class="card-link">
4.43.0 (April 10, 2026)
</a>
</p>
<p class="card-text m-0 pb-1">
Expand All @@ -82,8 +82,8 @@ <h2 id="bindings" class="card-title">Selenium Clients and WebDriver Language Bin
</p>
<p class="card-text m-0 pb-1">
Stable:
<a href="https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.41.0/selenium-java-4.41.0.zip" class="card-link">
4.41.0 (February 20, 2026)
<a href="https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.43.0/selenium-java-4.43.0.zip" class="card-link">
4.43.0 (April 10, 2026)
</a>
</p>
<p class="card-text m-0 pb-1">
Expand Down Expand Up @@ -111,7 +111,7 @@ <h2 id="bindings" class="card-title">Selenium Clients and WebDriver Language Bin
<p class="card-text m-0 pb-1">
Stable:
<a href="https://pypi.python.org/pypi/selenium" class="card-link">
4.41.0 (February 20, 2026)
4.43.0 (April 10, 2026)
</a>
</p>
<p class="card-text m-0 pb-1">
Expand Down Expand Up @@ -139,7 +139,7 @@ <h2 id="bindings" class="card-title">Selenium Clients and WebDriver Language Bin
<p class="card-text m-0 pb-1">
Stable:
<a href="https://npmjs.org/package/selenium-webdriver" class="card-link">
4.41.0 (February 20, 2026)
4.43.0 (April 10, 2026)
</a>
</p>
<p class="card-text m-0 pb-1">
Expand Down
Loading