File tree Expand file tree Collapse file tree 8 files changed +4
-12
lines changed Expand file tree Collapse file tree 8 files changed +4
-12
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,6 @@ protected override void InitializeAsyncCore()
34
34
Browser . Exists ( By . Id ( "culture-selector" ) ) ;
35
35
}
36
36
37
- [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/24692" ) ]
38
37
[ Theory ]
39
38
[ InlineData ( "en-US" ) ]
40
39
[ InlineData ( "fr-FR" ) ]
Original file line number Diff line number Diff line change @@ -389,7 +389,6 @@ public void CanBindTextboxShort()
389
389
}
390
390
391
391
[ Fact ]
392
- [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/23826" ) ]
393
392
public void CanBindTextboxNullableShort ( )
394
393
{
395
394
var target = Browser . FindElement ( By . Id ( "textbox-nullable-short" ) ) ;
@@ -512,7 +511,6 @@ public void CanBindTextboxDouble()
512
511
}
513
512
514
513
[ Fact ]
515
- [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/23596" ) ]
516
514
public void CanBindTextboxNullableDouble ( )
517
515
{
518
516
var target = Browser . FindElement ( By . Id ( "textbox-nullable-double" ) ) ;
@@ -612,7 +610,6 @@ public void CanBindTextboxNullableDecimal()
612
610
// This tests what happens you put invalid (unconvertable) input in. This is separate from the
613
611
// other tests because it requires type="text" - the other tests use type="number"
614
612
[ Fact ]
615
- [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/24756" ) ]
616
613
public void CanBindTextbox_Decimal_InvalidInput ( )
617
614
{
618
615
var target = Browser . FindElement ( By . Id ( "textbox-decimal-invalid" ) ) ;
Original file line number Diff line number Diff line change @@ -34,7 +34,6 @@ protected override void InitializeAsyncCore()
34
34
}
35
35
36
36
[ Fact ]
37
- [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/23643" ) ]
38
37
public void ShowsErrorNotification_OnError_Dismiss ( )
39
38
{
40
39
var errorUi = Browser . FindElement ( By . Id ( "blazor-error-ui" ) ) ;
@@ -52,7 +51,6 @@ public void ShowsErrorNotification_OnError_Dismiss()
52
51
}
53
52
54
53
[ Fact ]
55
- [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/23596" ) ]
56
54
public void ShowsErrorNotification_OnError_Reload ( )
57
55
{
58
56
var causeErrorButton = Browser . Exists ( By . Id ( "throw-simple-exception" ) ) ;
Original file line number Diff line number Diff line change @@ -30,7 +30,6 @@ protected override void InitializeAsyncCore()
30
30
}
31
31
32
32
[ Theory ]
33
- [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/23643" ) ]
34
33
[ InlineData ( "capturing_lambda" ) ]
35
34
[ InlineData ( "unbound_lambda" ) ]
36
35
[ InlineData ( "unbound_lambda_nested" ) ]
Original file line number Diff line number Diff line change @@ -87,7 +87,6 @@ public virtual void CanSetCultureAndParseCultureSensitiveNumbersAndDates(string
87
87
// We need to do step 4 to make sure that the value we're entering can "stick" in the form field.
88
88
// We can't use ".Text" because DOM reasons :(
89
89
[ Theory ]
90
- [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/23643" ) ]
91
90
[ InlineData ( "en-US" ) ]
92
91
[ InlineData ( "fr-FR" ) ]
93
92
public void CanSetCultureAndParseCultureInvariantNumbersAndDatesWithInputFields ( string culture )
Original file line number Diff line number Diff line change @@ -92,7 +92,6 @@ public void CanInsertUnkeyed()
92
92
}
93
93
94
94
[ Fact ]
95
- [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/24190" ) ]
96
95
public void CanDeleteUnkeyed ( )
97
96
{
98
97
PerformTest (
@@ -112,7 +111,6 @@ public void CanDeleteUnkeyed()
112
111
}
113
112
114
113
[ Fact ]
115
- [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/24190" ) ]
116
114
public void CanReorder ( )
117
115
{
118
116
PerformTest (
Original file line number Diff line number Diff line change @@ -34,7 +34,6 @@ protected override void InitializeAsyncCore()
34
34
}
35
35
36
36
[ Fact ]
37
- [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/25929" ) ]
38
37
public void WebAssemblyConfiguration_Works ( )
39
38
{
40
39
// Verify values from the default 'appsettings.json' are read.
Original file line number Diff line number Diff line change @@ -70,6 +70,7 @@ public async Task DisposeAsync()
70
70
var browsers = await Task . WhenAll ( _browsers . Values ) ;
71
71
foreach ( var ( browser , log ) in browsers )
72
72
{
73
+ browser ? . Quit ( ) ;
73
74
browser ? . Dispose ( ) ;
74
75
}
75
76
@@ -320,7 +321,9 @@ private string UserProfileDirectory(string context)
320
321
capabilities ,
321
322
TimeSpan . FromSeconds ( 60 ) . Add ( TimeSpan . FromSeconds ( attempt * 60 ) ) ) ;
322
323
323
- driver . Manage ( ) . Timeouts ( ) . ImplicitWait = TimeSpan . FromSeconds ( 1 ) ;
324
+ // Make sure implicit waits are disabled as they don't mix well with explicit waiting
325
+ // see https://www.selenium.dev/documentation/en/webdriver/waits/#implicit-wait
326
+ driver . Manage ( ) . Timeouts ( ) . ImplicitWait = TimeSpan . Zero ;
324
327
var logs = new RemoteLogs ( driver ) ;
325
328
326
329
return ( driver , logs ) ;
You can’t perform that action at this time.
0 commit comments