We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
RadioButtonGetsResetAfterSubmittingEnhancedForm
1 parent e78c1a3 commit 3ed4a7bCopy full SHA for 3ed4a7b
src/Components/test/E2ETest/ServerRenderingTests/FormHandlingTests/FormWithParentBindingContextTest.cs
@@ -1362,7 +1362,6 @@ void AssertUiState(string expectedStringValue, bool expectedBoolValue)
1362
}
1363
1364
[Fact]
1365
- [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/60873")]
1366
public void RadioButtonGetsResetAfterSubmittingEnhancedForm()
1367
{
1368
GoTo("forms/form-with-checkbox-and-radio-button");
@@ -1378,8 +1377,8 @@ public void RadioButtonGetsResetAfterSubmittingEnhancedForm()
1378
1377
1379
Browser.Exists(By.Id("submit-button")).Click();
1380
1381
- Assert.False(Browser.Exists(By.Id("checkbox")).Selected);
1382
- Assert.False(Browser.Exists(By.Id("radio-button")).Selected);
+ WaitAssert.False(Browser, () => Browser.Exists(By.Id("checkbox")).Selected);
+ WaitAssert.False(Browser, () => Browser.Exists(By.Id("radio-button")).Selected);
1383
1384
1385
0 commit comments