The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
HtmlComboBox::GetContent Method ()
Gets the content of the control.
Assembly: Microsoft.VisualStudio.TestTools.UITesting (in Microsoft.VisualStudio.TestTools.UITesting.dll)
Example - Verify all the values in the combo box.
string[] expectedContent = new string[] { "IE", "FireFox", "Safari" }; string[] actualContent = browserCombo.GetContent(); CollectionAssert.AreEqual(expectedContent, actualContent);
Show: