File tree Expand file tree Collapse file tree 4 files changed +5
-19
lines changed
src/Components/test/E2ETest
ServerRenderingTests/FormHandlingTests Expand file tree Collapse file tree 4 files changed +5
-19
lines changed Original file line number Diff line number Diff line change 314314 <NewtonsoftJsonBsonVersion >1.0.2</NewtonsoftJsonBsonVersion >
315315 <NewtonsoftJsonVersion >13.0.3</NewtonsoftJsonVersion >
316316 <NSwagApiDescriptionClientVersion >13.0.4</NSwagApiDescriptionClientVersion >
317- <PhotinoNETVersion >2.4.0 </PhotinoNETVersion >
317+ <PhotinoNETVersion >2.5.2 </PhotinoNETVersion >
318318 <MicrosoftPlaywrightVersion >1.28.0</MicrosoftPlaywrightVersion >
319319 <PollyExtensionsHttpVersion >3.0.0</PollyExtensionsHttpVersion >
320320 <PollyVersion >7.2.4</PollyVersion >
Original file line number Diff line number Diff line change @@ -1469,7 +1469,7 @@ public void SubmitButtonFormenctypeAttributeOverridesEnhancedFormEnctype()
14691469 [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/54757" ) ]
14701470 public void EnhancedFormThatCallsNavigationManagerRefreshDoesNotPushHistoryEntry ( )
14711471 {
1472- GoTo ( "about:blank" ) ;
1472+ Navigate ( "about:blank" ) ;
14731473
14741474 var startUrl = Browser . Url ;
14751475 GoTo ( "forms/form-that-calls-navigation-manager-refresh" ) ;
@@ -1492,7 +1492,7 @@ public void EnhancedFormThatCallsNavigationManagerRefreshDoesNotPushHistoryEntry
14921492 [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/54757" ) ]
14931493 public void EnhancedFormThatCallsNavigationManagerRefreshDoesNotPushHistoryEntry_Streaming ( )
14941494 {
1495- GoTo ( "about:blank" ) ;
1495+ Navigate ( "about:blank" ) ;
14961496
14971497 var startUrl = Browser . Url ;
14981498 GoTo ( "forms/form-that-calls-navigation-manager-refresh-streaming" ) ;
Original file line number Diff line number Diff line change 1111namespace Microsoft . AspNetCore . Components . E2ETest . Tests ;
1212
1313public class ThreadingHostedAppTest
14- : ServerTestBase < ThreadingHostedAppTest . ThreadingAppServerSiteFixture > , IDisposable
14+ : ServerTestBase < ThreadingHostedAppTest . ThreadingAppServerSiteFixture >
1515{
1616 public class ThreadingAppServerSiteFixture : AspNetSiteServerFixture
1717 {
@@ -110,11 +110,4 @@ private void WaitUntilLoaded()
110110 var app = Browser . Exists ( By . TagName ( "app" ) ) ;
111111 Browser . NotEqual ( "Loading..." , ( ) => app . Text ) ;
112112 }
113-
114- public void Dispose ( )
115- {
116- // Make the tests run faster by navigating back to the home page when we are done
117- // If we don't, then the next test will reload the whole page before it starts
118- Browser . Exists ( By . LinkText ( "Home" ) ) . Click ( ) ;
119- }
120113}
Original file line number Diff line number Diff line change 1111namespace Microsoft . AspNetCore . Components . E2ETest . Tests ;
1212
1313public class ThreadingAppTest
14- : ServerTestBase < BlazorWasmTestAppFixture < ThreadingApp . Program > > , IDisposable
14+ : ServerTestBase < BlazorWasmTestAppFixture < ThreadingApp . Program > >
1515{
1616 public ThreadingAppTest (
1717 BrowserFixture browserFixture ,
@@ -127,11 +127,4 @@ private void WaitUntilLoaded()
127127 var app = Browser . Exists ( By . TagName ( "app" ) ) ;
128128 Browser . NotEqual ( "Loading..." , ( ) => app . Text ) ;
129129 }
130-
131- public void Dispose ( )
132- {
133- // Make the tests run faster by navigating back to the home page when we are done
134- // If we don't, then the next test will reload the whole page before it starts
135- Browser . Exists ( By . LinkText ( "Home" ) ) . Click ( ) ;
136- }
137130}
You can’t perform that action at this time.
0 commit comments