From 197e4382df48282d0263bc7b56751324a3daeeb9 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Tue, 3 Feb 2026 02:09:30 +0000
Subject: [PATCH 1/3] Initial plan
From ce7b8eb79b5928c0bba5cc6c37b456dd43a03a72 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Tue, 3 Feb 2026 02:13:55 +0000
Subject: [PATCH 2/3] Update browser testing dependencies to latest versions
- Update Selenium.WebDriver from 4.38.0 to 4.40.0
- Update Selenium.Support from 4.38.0 to 4.40.0
- Update Microsoft.Playwright from 1.56.0 to 1.57.0
- Update Playwright Docker image from v1.56.0 to v1.57.0
Co-authored-by: halter73 <54385+halter73@users.noreply.github.com>
---
eng/Versions.props | 6 +++---
src/Components/benchmarkapps/Wasm.Performance/dockerfile | 2 +-
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/eng/Versions.props b/eng/Versions.props
index d758a5e19c9f..5ce1d11e6783 100644
--- a/eng/Versions.props
+++ b/eng/Versions.props
@@ -171,11 +171,11 @@
13.0.3
13.0.4
2.5.2
- 1.56.0
+ 1.57.0
3.0.0
7.2.4
- 4.38.0
- 4.38.0
+ 4.40.0
+ 4.40.0
1.4.0
4.0.0
2.7.27
diff --git a/src/Components/benchmarkapps/Wasm.Performance/dockerfile b/src/Components/benchmarkapps/Wasm.Performance/dockerfile
index 2b8fd33f70c2..747925a8ac5a 100644
--- a/src/Components/benchmarkapps/Wasm.Performance/dockerfile
+++ b/src/Components/benchmarkapps/Wasm.Performance/dockerfile
@@ -29,7 +29,7 @@ RUN .dotnet/dotnet publish -c Release -r linux-x64 --sc true -o /app ./src/Compo
RUN chmod +x /app/Wasm.Performance.Driver
WORKDIR /app
-FROM mcr.microsoft.com/playwright/dotnet:v1.56.0-jammy-amd64 AS final
+FROM mcr.microsoft.com/playwright/dotnet:v1.57.0-jammy-amd64 AS final
COPY --from=build ./app ./
COPY ./exec.sh ./
From 757a7fa9623770ffdf58248e983000415aff477c Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Thu, 5 Feb 2026 01:14:47 +0000
Subject: [PATCH 3/3] Fix Selenium 4.40.0 breaking change: Remove
.Communication from BiDi namespace
Update using statements to use OpenQA.Selenium.BiDi instead of OpenQA.Selenium.BiDi.Communication which was removed in Selenium 4.40.0
Co-authored-by: halter73 <54385+halter73@users.noreply.github.com>
---
.../ServerExecutionTests/ServerReconnectionWithoutStateTest.cs | 2 +-
.../ServerExecutionTests/ServerResumeWithExpiredStateTest.cs | 2 +-
.../test/E2ETest/ServerRenderingTests/EnhancedNavigationTest.cs | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/Components/test/E2ETest/ServerExecutionTests/ServerReconnectionWithoutStateTest.cs b/src/Components/test/E2ETest/ServerExecutionTests/ServerReconnectionWithoutStateTest.cs
index fa6f27b10766..af3d36fc66ef 100644
--- a/src/Components/test/E2ETest/ServerExecutionTests/ServerReconnectionWithoutStateTest.cs
+++ b/src/Components/test/E2ETest/ServerExecutionTests/ServerReconnectionWithoutStateTest.cs
@@ -11,7 +11,7 @@
using Microsoft.AspNetCore.Components.E2ETest.ServerExecutionTests;
using Microsoft.AspNetCore.E2ETesting;
using OpenQA.Selenium;
-using OpenQA.Selenium.BiDi.Communication;
+using OpenQA.Selenium.BiDi;
using OpenQA.Selenium.DevTools;
using TestServer;
using Xunit.Abstractions;
diff --git a/src/Components/test/E2ETest/ServerExecutionTests/ServerResumeWithExpiredStateTest.cs b/src/Components/test/E2ETest/ServerExecutionTests/ServerResumeWithExpiredStateTest.cs
index 827066fedce6..96c17170c15f 100644
--- a/src/Components/test/E2ETest/ServerExecutionTests/ServerResumeWithExpiredStateTest.cs
+++ b/src/Components/test/E2ETest/ServerExecutionTests/ServerResumeWithExpiredStateTest.cs
@@ -11,7 +11,7 @@
using Microsoft.AspNetCore.Components.E2ETest.ServerExecutionTests;
using Microsoft.AspNetCore.E2ETesting;
using OpenQA.Selenium;
-using OpenQA.Selenium.BiDi.Communication;
+using OpenQA.Selenium.BiDi;
using OpenQA.Selenium.DevTools;
using TestServer;
using Xunit.Abstractions;
diff --git a/src/Components/test/E2ETest/ServerRenderingTests/EnhancedNavigationTest.cs b/src/Components/test/E2ETest/ServerRenderingTests/EnhancedNavigationTest.cs
index 6ee4c45be07d..e1f22971872a 100644
--- a/src/Components/test/E2ETest/ServerRenderingTests/EnhancedNavigationTest.cs
+++ b/src/Components/test/E2ETest/ServerRenderingTests/EnhancedNavigationTest.cs
@@ -11,7 +11,7 @@
using Microsoft.AspNetCore.E2ETesting;
using Microsoft.AspNetCore.InternalTesting;
using OpenQA.Selenium;
-using OpenQA.Selenium.BiDi.Communication;
+using OpenQA.Selenium.BiDi;
using OpenQA.Selenium.DevTools;
using OpenQA.Selenium.Support.Extensions;
using TestServer;