Skip to content
Open
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
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.38.0.jar";
private const string ServerJarName = "selenium-server-4.40.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.38.0.jar",
"selenium-server-4.40.0.jar",
)

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

args = [
Expand Down Expand Up @@ -280,7 +280,7 @@ def grid_server():
)
)
),
"selenium-server-4.38.0.jar",
"selenium-server-4.40.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.38.0.jar'), __dir__),
Selenium::Server.new(File.expand_path(File.join('..', '..', '..', 'selenium-server-4.40.0.jar'), __dir__),
background: true,
args: %w[--selenium-manager true --enable-managed-downloads true])
end
Expand Down
Binary file not shown.
Loading