File tree 4 files changed +5
-19
lines changed
src/Components/test/E2ETest
ServerRenderingTests/FormHandlingTests 4 files changed +5
-19
lines changed Original file line number Diff line number Diff line change 314
314
<NewtonsoftJsonBsonVersion >1.0.2</NewtonsoftJsonBsonVersion >
315
315
<NewtonsoftJsonVersion >13.0.3</NewtonsoftJsonVersion >
316
316
<NSwagApiDescriptionClientVersion >13.0.4</NSwagApiDescriptionClientVersion >
317
- <PhotinoNETVersion >2.4.0 </PhotinoNETVersion >
317
+ <PhotinoNETVersion >2.5.2 </PhotinoNETVersion >
318
318
<MicrosoftPlaywrightVersion >1.28.0</MicrosoftPlaywrightVersion >
319
319
<PollyExtensionsHttpVersion >3.0.0</PollyExtensionsHttpVersion >
320
320
<PollyVersion >7.2.4</PollyVersion >
Original file line number Diff line number Diff line change @@ -1469,7 +1469,7 @@ public void SubmitButtonFormenctypeAttributeOverridesEnhancedFormEnctype()
1469
1469
[ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/54757" ) ]
1470
1470
public void EnhancedFormThatCallsNavigationManagerRefreshDoesNotPushHistoryEntry ( )
1471
1471
{
1472
- GoTo ( "about:blank" ) ;
1472
+ Navigate ( "about:blank" ) ;
1473
1473
1474
1474
var startUrl = Browser . Url ;
1475
1475
GoTo ( "forms/form-that-calls-navigation-manager-refresh" ) ;
@@ -1492,7 +1492,7 @@ public void EnhancedFormThatCallsNavigationManagerRefreshDoesNotPushHistoryEntry
1492
1492
[ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/54757" ) ]
1493
1493
public void EnhancedFormThatCallsNavigationManagerRefreshDoesNotPushHistoryEntry_Streaming ( )
1494
1494
{
1495
- GoTo ( "about:blank" ) ;
1495
+ Navigate ( "about:blank" ) ;
1496
1496
1497
1497
var startUrl = Browser . Url ;
1498
1498
GoTo ( "forms/form-that-calls-navigation-manager-refresh-streaming" ) ;
Original file line number Diff line number Diff line change 11
11
namespace Microsoft . AspNetCore . Components . E2ETest . Tests ;
12
12
13
13
public class ThreadingHostedAppTest
14
- : ServerTestBase < ThreadingHostedAppTest . ThreadingAppServerSiteFixture > , IDisposable
14
+ : ServerTestBase < ThreadingHostedAppTest . ThreadingAppServerSiteFixture >
15
15
{
16
16
public class ThreadingAppServerSiteFixture : AspNetSiteServerFixture
17
17
{
@@ -110,11 +110,4 @@ private void WaitUntilLoaded()
110
110
var app = Browser . Exists ( By . TagName ( "app" ) ) ;
111
111
Browser . NotEqual ( "Loading..." , ( ) => app . Text ) ;
112
112
}
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
- }
120
113
}
Original file line number Diff line number Diff line change 11
11
namespace Microsoft . AspNetCore . Components . E2ETest . Tests ;
12
12
13
13
public class ThreadingAppTest
14
- : ServerTestBase < BlazorWasmTestAppFixture < ThreadingApp . Program > > , IDisposable
14
+ : ServerTestBase < BlazorWasmTestAppFixture < ThreadingApp . Program > >
15
15
{
16
16
public ThreadingAppTest (
17
17
BrowserFixture browserFixture ,
@@ -127,11 +127,4 @@ private void WaitUntilLoaded()
127
127
var app = Browser . Exists ( By . TagName ( "app" ) ) ;
128
128
Browser . NotEqual ( "Loading..." , ( ) => app . Text ) ;
129
129
}
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
- }
137
130
}
You can’t perform that action at this time.
0 commit comments