We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Assert.Multiple
1 parent ac318a9 commit ffb861cCopy full SHA for ffb861c
dotnet/test/common/ChildrenFindingTest.cs
@@ -74,11 +74,8 @@ public void FindElementsByXPath()
74
75
ReadOnlyCollection<IWebElement> children = element.FindElements(By.XPath("select/option"));
76
Assert.That(children, Has.Exactly(8).Items);
77
- Assert.Multiple(() =>
78
- {
79
- Assert.That(children[0].Text, Is.EqualTo("One"));
80
- Assert.That(children[1].Text, Is.EqualTo("Two"));
81
- });
+ Assert.That(children[0].Text, Is.EqualTo("One"));
+ Assert.That(children[1].Text, Is.EqualTo("Two"));
82
}
83
84
[Test]
0 commit comments