diff --git a/eng/Versions.props b/eng/Versions.props
index 37056ac4afb6..898682db2734 100644
--- a/eng/Versions.props
+++ b/eng/Versions.props
@@ -314,7 +314,7 @@
1.0.2
13.0.3
13.0.4
- 2.4.0
+ 2.5.2
1.28.0
3.0.0
7.2.4
diff --git a/src/Components/test/E2ETest/ServerRenderingTests/FormHandlingTests/FormWithParentBindingContextTest.cs b/src/Components/test/E2ETest/ServerRenderingTests/FormHandlingTests/FormWithParentBindingContextTest.cs
index c744c060b555..4b35b0c5eed0 100644
--- a/src/Components/test/E2ETest/ServerRenderingTests/FormHandlingTests/FormWithParentBindingContextTest.cs
+++ b/src/Components/test/E2ETest/ServerRenderingTests/FormHandlingTests/FormWithParentBindingContextTest.cs
@@ -1469,7 +1469,7 @@ public void SubmitButtonFormenctypeAttributeOverridesEnhancedFormEnctype()
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/54757")]
public void EnhancedFormThatCallsNavigationManagerRefreshDoesNotPushHistoryEntry()
{
- GoTo("about:blank");
+ Navigate("about:blank");
var startUrl = Browser.Url;
GoTo("forms/form-that-calls-navigation-manager-refresh");
@@ -1492,7 +1492,7 @@ public void EnhancedFormThatCallsNavigationManagerRefreshDoesNotPushHistoryEntry
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/54757")]
public void EnhancedFormThatCallsNavigationManagerRefreshDoesNotPushHistoryEntry_Streaming()
{
- GoTo("about:blank");
+ Navigate("about:blank");
var startUrl = Browser.Url;
GoTo("forms/form-that-calls-navigation-manager-refresh-streaming");
diff --git a/src/Components/test/E2ETest/Tests/ThreadingAppHostedTest.cs b/src/Components/test/E2ETest/Tests/ThreadingAppHostedTest.cs
index 23d8d7bfbc32..d5fbcb451365 100644
--- a/src/Components/test/E2ETest/Tests/ThreadingAppHostedTest.cs
+++ b/src/Components/test/E2ETest/Tests/ThreadingAppHostedTest.cs
@@ -11,7 +11,7 @@
namespace Microsoft.AspNetCore.Components.E2ETest.Tests;
public class ThreadingHostedAppTest
- : ServerTestBase, IDisposable
+ : ServerTestBase
{
public class ThreadingAppServerSiteFixture : AspNetSiteServerFixture
{
@@ -110,11 +110,4 @@ private void WaitUntilLoaded()
var app = Browser.Exists(By.TagName("app"));
Browser.NotEqual("Loading...", () => app.Text);
}
-
- public void Dispose()
- {
- // Make the tests run faster by navigating back to the home page when we are done
- // If we don't, then the next test will reload the whole page before it starts
- Browser.Exists(By.LinkText("Home")).Click();
- }
}
diff --git a/src/Components/test/E2ETest/Tests/ThreadingAppTest.cs b/src/Components/test/E2ETest/Tests/ThreadingAppTest.cs
index f11528a64e37..3afb26163483 100644
--- a/src/Components/test/E2ETest/Tests/ThreadingAppTest.cs
+++ b/src/Components/test/E2ETest/Tests/ThreadingAppTest.cs
@@ -11,7 +11,7 @@
namespace Microsoft.AspNetCore.Components.E2ETest.Tests;
public class ThreadingAppTest
- : ServerTestBase>, IDisposable
+ : ServerTestBase>
{
public ThreadingAppTest(
BrowserFixture browserFixture,
@@ -127,11 +127,4 @@ private void WaitUntilLoaded()
var app = Browser.Exists(By.TagName("app"));
Browser.NotEqual("Loading...", () => app.Text);
}
-
- public void Dispose()
- {
- // Make the tests run faster by navigating back to the home page when we are done
- // If we don't, then the next test will reload the whole page before it starts
- Browser.Exists(By.LinkText("Home")).Click();
- }
}