public void ClickAllControlsOnPage_UsingReflection_Succeeds() { //Arrange using (TempFile tempFile = new TempFile( @"<html> <head> <title>test</title> </head> <body> <a href=""#"">test</a> <button>test</button> <input type=""text"" value=""test""/> </body> </html>")) { CUITe_BrowserWindow.Launch(tempFile.FilePath); CUITe_BrowserWindow window = new CUITe_BrowserWindow("test"); ICUITe_ControlBase a = (ICUITe_ControlBase)window.Get<CUITe_HtmlHyperlink>("InnerText=test"); a.Click(); List<Type> list = new List<Type>(); list.Add(typeof(CUITe_HtmlHyperlink)); list.Add(typeof(CUITe_HtmlButton)); list.Add(typeof(CUITe_HtmlEdit)); MethodInfo getMethodInfo = typeof(CUITe_BrowserWindow).GetMethod("Get"); foreach(Type t in list) { MethodInfo test = getMethodInfo.MakeGenericMethod(t); ICUITe_ControlBase control; if ((t == typeof(CUITe_HtmlEdit)) || (t == typeof(CUITe_HtmlTextArea))) { control = (ICUITe_ControlBase)test.Invoke(window, new object[] { "Value=test" }); } else { //window.Get<t>("InnerText=test"); control = (ICUITe_ControlBase)test.Invoke(window, new object[] { "InnerText=test" }); } //Act control.Click(); if (control is CUITe_HtmlEdit) { (control as CUITe_HtmlEdit).SetText("text"); } else if (control is CUITe_HtmlTextArea) { (control as CUITe_HtmlTextArea).SetText("text"); } } window.Close(); } }
public void SlComboBox_SelectItem_Succeeds() { CUITe_BrowserWindow.Launch(TestSilverlightApplicationHtmlPageUrl); CUITe_BrowserWindow b = new CUITe_BrowserWindow("Home"); b.SetFocus(); CUITe_SlComboBox oCombo = b.Get<CUITe_SlComboBox>("AutomationId=comboBox1"); oCombo.SelectItem(3); foreach (string temp in oCombo.Items) { Console.WriteLine(temp); } b.Close(); }
public void HtmlComboBox_Items_Succeeds() { //Arrange using (TempFile tempFile = new TempFile( @"<html> <head> <title>test</title> </head> <body> <select id=""selectId""> <option>Cricket</option> <option>Football</option> <option>Tennis</option> </select> </body> </html>")) { CUITe_BrowserWindow.Launch(tempFile.FilePath); CUITe_BrowserWindow window = new CUITe_BrowserWindow("test"); //Act CUITe_HtmlComboBox comboBox = window.Get<CUITe_HtmlComboBox>("Id=selectId"); //Assert Assert.AreEqual("Football", comboBox.Items[1]); Assert.IsTrue(comboBox.ItemExists("Cricket")); window.Close(); } }
public void Launch_TempHtmlFileWithInputWithMaxLength_CanSetTextWhichExceedsMaxLength() { // Arrange using (TempFile tempFile = new TempFile( @"<html> <head> <title>test</title> </head> <body> <input id=""input"" type=""text"" maxlength=10 /> </body> </html>")) { CUITe_BrowserWindow.Launch(tempFile.FilePath); CUITe_BrowserWindow window = new CUITe_BrowserWindow("test"); CUITe_HtmlEdit input = window.Get<CUITe_HtmlEdit>("id=input"); // Act string inputText = "12345678901"; string outputText = "1234567890"; Keyboard.SendKeys(input.UnWrap(), inputText); // Assert Assert.AreEqual(input.GetText(), outputText); window.Close(); } }
public void HtmlCheckBox_DisabledByStyle_ControlExistsAndCanGetCheckedState() { //Arrange using (TempFile tempFile = new TempFile( @"<html> <head> <title>test</title> </head> <body> <input type=""checkbox"" id=""checkBoxId"" disabled=""disabled"" name=""checkBoxName"" checked=""checked"" /> </body> </html>")) { CUITe_BrowserWindow.Launch(tempFile.FilePath); CUITe_BrowserWindow window = new CUITe_BrowserWindow("test"); //Act CUITe_HtmlCheckBox checkBox = window.Get<CUITe_HtmlCheckBox>("id=checkBoxId"); //Assert Assert.IsTrue(checkBox.Exists); Assert.IsTrue(checkBox.Checked); window.Close(); } }
public void HtmlTable_FindHeaderAndClick_Succeeds() { //Arrange using (TempFile tempFile = new TempFile( @"<html> <head> <title>test</title> </head> <body> <table style=""width: 100%;"" id=""tableId""> <tbody> <tr> <td>Commitment</td> <th>September</th> <th>October</th> <th>November</th> <td>Total</td> </tr> <tr> <td>Beginning Balance</td> <td>¥21,570,253</td> <td>¥21,375,491</td> <td>¥21,200,873</td> <td></td> </tr> <tr> <td>New Purchases</td> <td>¥0</td> <td>¥0</td> <td>¥0</td> <td></td> </tr> <tr> <td>Utilized</td> <td>¥194,762</td> <td>¥174,618</td> <td>¥0</td> <td>¥369,380</td> </tr> <tr> <td>Ending Balance</td> <td>¥21,375,491</td> <td>¥21,200,873</td> <td>¥21,200,873</td> <td></td> </tr> <tr> <td><b>Overage</b></td> <td>¥0</td> <td>¥0</td> <td>¥0</td> <td>¥0</td> <td></td> </tr> <tr> <td><b>Total Usage</b></td> <td>¥194,762</td> <td>¥174,618</td> <td>¥0</td> <td>¥369,380</td> </tr> </tbody> </table> </body> </html>")) { CUITe_BrowserWindow.Launch(tempFile.FilePath); CUITe_BrowserWindow window = new CUITe_BrowserWindow("test"); CUITe_HtmlTable table = window.Get<CUITe_HtmlTable>("id=tableId"); //Act table.FindHeaderAndClick(0, 2); window.Close(); } }
public void HtmlTable_GetColumnHeaders_Succeeds() { CUITe_BrowserWindow.Launch(CurrentDirectory + "/TestHtmlPage.html"); CUITe_BrowserWindow bWin = new CUITe_BrowserWindow("A Test"); CUITe_HtmlTable tbl = bWin.Get<CUITe_HtmlTable>("id=calcWithHeaders"); string[] saExpectedValues = new string[] { "Header1", "Header2", "Header3" }; string[] saHeaders = tbl.GetColumnHeaders(); Assert.AreEqual(saExpectedValues[0], saHeaders[0]); Assert.AreEqual(saExpectedValues[1], saHeaders[1]); Assert.AreEqual(saExpectedValues[2], saHeaders[2]); bWin.Close(); }
public void Launch_UsingNewInstanceOfABrowserWindow_CanUsePartialWindowTitle() { //Arrange using (TempFile tempFile = new TempFile( @"<html> <head> <title>test 1 2 3</title> </head> <body> <button id=""buttonId"" >Button</button> </body> </html>")) { CUITe_BrowserWindow.Launch(tempFile.FilePath); CUITe_BrowserWindow window = new CUITe_BrowserWindow("test"); //Act CUITe_HtmlButton button = window.Get<CUITe_HtmlButton>("id=buttonId"); //Assert Assert.AreEqual(button.InnerText, "Button"); Trace.WriteLine(window.Uri.ToString()); window.Close(); } }
public void HtmlTable_ClickOnColumnHeader_Succeeds() { CUITe_BrowserWindow.Launch(CurrentDirectory + "/TestHtmlPage.html"); CUITe_BrowserWindow bWin = new CUITe_BrowserWindow("A Test"); CUITe_HtmlTable tbl = bWin.Get<CUITe_HtmlTable>("id=tableWithAlertOnHeaderClick"); tbl.FindHeaderAndClick(0, 0); bWin.PerformDialogAction(BrowserDialogAction.Ok); bWin.Close(); }
public void Enabled_OnDisabledHtmlInputButton_ReturnsFalse() { // Arrange using (TempFile tempFile = new TempFile( @"<html> <head> <title>test</title> </head> <body> <input name=""inputName"" type=""submit"" value=""Click here"" disabled=""disabled"" /> </body> </html>")) { CUITe_BrowserWindow.Launch(tempFile.FilePath); CUITe_BrowserWindow window = new CUITe_BrowserWindow("test"); CUITe_HtmlInputButton button = window.Get<CUITe_HtmlInputButton>("Value=Click here"); // Act and Assert Assert.IsFalse(button.Enabled); window.Close(); } }
public void HtmlFileInput_SetFile_Succeeds() { //Arrange using (TempFile tempFile = new TempFile( @"<html> <head> <title>test</title> </head> <body> <input name=""inputName"" type=""file"" id=""inputId"" /> </body> </html>")) { CUITe_BrowserWindow.Launch(tempFile.FilePath); CUITe_BrowserWindow window = new CUITe_BrowserWindow("test"); CUITe_HtmlFileInput fileInput = window.Get<CUITe_HtmlFileInput>("Id=inputId"); string tempInputFilePath = Path.GetTempFileName(); //Act fileInput.SetFile(tempInputFilePath); window.Close(); File.Delete(tempInputFilePath); } }
public void SetText_OnHtmlPassword_Succeeds() { // Arrange using (TempFile tempFile = new TempFile( @"<html> <head> <title>test</title> </head> <body> <div class=""row textbox"" id=""idDiv_PWD_PasswordTb""> <div style=""width: 100%; position: relative;""> <input name=""passwd"" id=""i0118"" aria-labelledby=""idDiv_PWD_PasswordExample"" type=""password"" autocomplete=""off""> <div class=""phholder"" style=""left: 0px; top: 0px; width: 100%; position: absolute; z-index: 5;""> <div class=""placeholder"" id=""idDiv_PWD_PasswordExample"" aria-hidden=""true"" style=""cursor: text;"">Password</div> </div> </div> </div> </body> </html>")) { CUITe_BrowserWindow.Launch(tempFile.FilePath); CUITe_BrowserWindow window = new CUITe_BrowserWindow("test"); CUITe_HtmlPassword txtPwd = window.Get<CUITe_HtmlPassword>("id=i0118"); // Act txtPwd.SetText("hello"); // TODO: Assert window.Close(); } }
public void Click_OnHtmlInputButtonWithEqualsSignInSearchParameterValue_Succeeds() { //Arrange using (TempFile tempFile = new TempFile( @"<html> <head> <title>test</title> </head> <body> <input type=""submit"" value=""="" onclick=""alert('onclick');""/> </body> </html>")) { CUITe_BrowserWindow.Launch(tempFile.FilePath); CUITe_BrowserWindow window = new CUITe_BrowserWindow("test"); CUITe_HtmlInputButton button = window.Get<CUITe_HtmlInputButton>("Value=="); //Act button.Click(); window.PerformDialogAction(BrowserDialogAction.Ok); window.Close(); } }
public void SetText_OnHtmlEdit_Succeeds() { //Arrange using (TempFile tempFile = new TempFile( @"<html> <head> <title>test</title> </head> <body> <div id=""div1""> <input type=""text""/> </div> </body> </html>")) { CUITe_BrowserWindow.Launch(tempFile.FilePath); CUITe_BrowserWindow window = new CUITe_BrowserWindow("test"); CUITe_HtmlDiv div = window.Get<CUITe_HtmlDiv>("id=div1"); CUITe_HtmlEdit inputTextBox = div.Get<CUITe_HtmlEdit>(); //Act inputTextBox.SetText("text"); //Assert Assert.AreEqual("text", inputTextBox.GetText()); window.Close(); } }
public void SelectedItems_OnHtmlList_Succeeds() { //Arrange using (TempFile tempFile = new TempFile( @"<html> <head> <title>test</title> </head> <body> <select id=""selectId"" multiple=""multiple""> <option value=""1"">1</option> <option value=""2"">2</option> <option value=""3"">3</option> </select> </body> </html>")) { CUITe_BrowserWindow.Launch(tempFile.FilePath); CUITe_BrowserWindow bWin = new CUITe_BrowserWindow("test"); CUITe_HtmlList list = bWin.Get<CUITe_HtmlList>("id=selectId"); string[] itemsToSelect = new string[] { "1", "2" }; //Act list.SelectedItems = itemsToSelect; //Assert CollectionAssert.AreEqual(itemsToSelect, list.SelectedItems); bWin.Close(); } }
public void Click_OnHtmlHyperlink_InTableWithEmptyCell_Succeeds() { // Arrange using (TempFile tempFile = new TempFile( @"<html> <head> <title>test</title> </head> <body> <table id=""tableId""> <tr id=""row""> <td></td> <td><a href=""#"">Details</a></td> </tr> </table> </body> </html>")) { CUITe_BrowserWindow.Launch(tempFile.FilePath); CUITe_BrowserWindow window = new CUITe_BrowserWindow("test"); CUITe_HtmlTable table = window.Get<CUITe_HtmlTable>("Id=tableId"); CUITe_HtmlCell cell = table.GetCell(0, 1); CUITe_HtmlHyperlink hyperlink = cell.Get<CUITe_HtmlHyperlink>(); // Act hyperlink.Click(); // TODO: Assert window.Close(); } }
public void HtmlControl_NonExistent_DoesNotExist() { //Arrange SmartMatchOptions smartMatchOptions = SmartMatchOptions.Control; try { //set SmartMatchOptions to None because we are using .Exists on an invalid control //remember previous setting so that it can be reset smartMatchOptions = Playback.PlaybackSettings.SmartMatchOptions; Playback.PlaybackSettings.SmartMatchOptions = SmartMatchOptions.None; using (TempFile tempFile = new TempFile( @"<html> <head> <title>test</title> </head> <body> </body> </html>")) { CUITe_BrowserWindow.Launch(tempFile.FilePath); CUITe_BrowserWindow window = new CUITe_BrowserWindow("test"); //Act CUITe_HtmlDiv div = window.Get<CUITe_HtmlDiv>("Id=invalid"); //Assert Assert.IsFalse(div.Exists); window.Close(); } } finally { //reset default setting Playback.PlaybackSettings.SmartMatchOptions = smartMatchOptions; } }
public void HtmlInputButton_GetWithValueContainingWhitespace_Succeeds() { //Arrange using (TempFile tempFile = new TempFile( @"<html> <head> <title>test</title> </head> <body> <input name=""inputName"" type=""submit"" value="" Search "" /> </body> </html>")) { CUITe_BrowserWindow.Launch(tempFile.FilePath); CUITe_BrowserWindow window = new CUITe_BrowserWindow("test"); CUITe_HtmlInputButton button = window.Get<CUITe_HtmlInputButton>("Value= Search "); //Act button.Click(); window.Close(); } }
public void GetChildren_UsingHyperlinks_CanFindHyperlinkByInnerText() { //Arrange using (TempFile tempFile = new TempFile( @"<html> <head> <title>test</title> </head> <body> <div id=""div1""> <a href=""#"">A - B - C</a> <a href=""#"">A - F - E</a> <a href=""#"">A - D - E</a> <a href=""#"">Z - B - C</a> <a href=""#"">Z - D - E</a> </div> </body> </html>")) { CUITe_BrowserWindow.Launch(tempFile.FilePath); CUITe_BrowserWindow window = new CUITe_BrowserWindow("test"); //Act List<ICUITe_ControlBase> collection = window.Get<CUITe_HtmlDiv>("id=div1").GetChildren(); foreach (ICUITe_ControlBase control in collection) { if (control is CUITe_HtmlHyperlink) { CUITe_HtmlHyperlink link = (CUITe_HtmlHyperlink)control; if (link.InnerText.StartsWith("A")) { Trace.WriteLine(string.Format("found: {0}", link.InnerText)); } } } window.Close(); } }
public void Launch_TempHtmlFile_CanFindHyperlinkByHref() { // Arrange using (TempFile tempFile = new TempFile( @"<html> <head> <title>test</title> </head> <body> <div class=""login"" style=""border: none;""> <div class=""member_box""> <span>APPLY FOR MEMBERSHIP</span> <a href=""/registration""> </a> </div> </body> </html>")) { // Act CUITe_BrowserWindow.Launch(tempFile.FilePath); CUITe_BrowserWindow window = new CUITe_BrowserWindow("test"); // Assert CUITe_HtmlHyperlink SignUpHyperLink = window.Get<CUITe_HtmlHyperlink>("href~registration"); Assert.IsTrue(SignUpHyperLink.Exists, "SignUp not found"); window.Close(); } }
public void HtmlHyperlink_OnSharePoint2010_Succeeds() { CUITe_BrowserWindow.Launch("http://myasia/sites/sureba/Default.aspx"); CUITe_BrowserWindow.Authenticate("username", "passwd"); CUITe_BrowserWindow bWin = new CUITe_BrowserWindow("Suresh Balasubramanian"); bWin.Get<CUITe_HtmlHyperlink>("Id=idHomePageNewDocument").Click(); var closeLink = bWin.Get<CUITe_HtmlHyperlink>("Title=Close;class=ms-dlgCloseBtn"); //clicking closeLink directly doesn't work as the maximizeLink is clicked due to the controls being placed too close to each other Mouse.Click(closeLink.UnWrap().GetChildren()[0].GetChildren()[0]); bWin.RunScript(@"STSNavigate2(event,'/sites/sureba/_layouts/SignOut.aspx');"); }
public void GetHtmlDiv_ByClass_Succeeds() { // Arrange using (TempFile tempFile = new TempFile( @"<html> <head> <title>test</title> </head> <body> <div class=""button""><a href=""/main"">main text</a></div> <div class=""button""><a href=""/about"">about text</a></div> </body> </html>")) { CUITe_BrowserWindow.Launch(tempFile.FilePath); CUITe_BrowserWindow window = new CUITe_BrowserWindow("test"); // Act CUITe_HtmlDiv div = window.Get<CUITe_HtmlDiv>("class=button"); CUITe_HtmlHyperlink about = window.Get<CUITe_HtmlHyperlink>("InnerText=about text;href~about"); CUITe_HtmlDiv div2 = about.Parent as CUITe_HtmlDiv; // Assert Assert.IsTrue(div.Exists); Assert.AreEqual("main text", div.UnWrap().InnerText); Assert.IsTrue(about.Exists); Assert.IsTrue(div2.Exists); Assert.AreEqual("about text", div2.UnWrap().InnerText); window.Close(); } }
public void HtmlInputButton_UsingSearchParameterWithValueAsKey_Succeeds() { //Internet Explorer may display the message: Internet Explorer restricted this webpage from running scripts or ActiveX controls. //This security restriction prevents the alert message to appear. //To enable running scripts on the local computer, go to Tools > Internet options > Advanced > Security > [checkmark] Allow active content to run in files on My Computer //Arrange using (TempFile tempFile = new TempFile( @"<html> <head> <title>test</title> </head> <body> <input type=""submit"" value=""Log In"" onclick=""alert('onclick');""/> </body> </html>")) { CUITe_BrowserWindow.Launch(tempFile.FilePath); CUITe_BrowserWindow window = new CUITe_BrowserWindow("test"); CUITe_HtmlInputButton button = window.Get<CUITe_HtmlInputButton>("Value=Log In"); //Act button.Click(); if (CUITe_BrowserWindow.GetCurrentBrowser() is CUITe.Browsers.InternetExplorer) { //read JavaScript alert text CUITe_WinWindow popup = new CUITe_WinWindow("ClassName=#32770;Name=Message from webpage"); CUITe_WinText text = popup.Get<CUITe_WinText>(); Assert.AreEqual("onclick", text.DisplayText); } window.PerformDialogAction(BrowserDialogAction.Ok); window.Close(); } }
public void GetHtmlRow_ById_Succeeds() { // Arrange using (TempFile tempFile = new TempFile( @"<html> <head> <title>test</title> </head> <body> <table class=""cart"" cellspacing=""0""> <tbody> <tr id=""555002_gp2""> <td> banana </td> </tr> </tbody> </table> </body> </html>")) { CUITe_BrowserWindow.Launch(tempFile.FilePath); CUITe_BrowserWindow window = new CUITe_BrowserWindow("test"); // Act CUITe_HtmlRow row = window.Get<CUITe_HtmlRow>("id=555002_gp2"); // Assert Assert.IsTrue(row.Exists); window.Close(); } }
public void HtmlTable_ColumnCount_Succeeds() { CUITe_BrowserWindow.Launch(CurrentDirectory + "/TestHtmlPage.html"); CUITe_BrowserWindow bWin = new CUITe_BrowserWindow("A Test"); CUITe_HtmlTable tbl = bWin.Get<CUITe_HtmlTable>("id=calcWithHeaders"); Assert.AreEqual(3, tbl.ColumnCount); bWin.Close(); }
public void GetSelectedValue_OfRadioButton_Succeeds() { // Arrange using (TempFile tempFile = new TempFile( @"<html> <head> <title>test</title> </head> <body> <input type=""radio"" name=""radio:tab1:gender.type.male"" value=""male"" checked=checked>Male</input><br/> <input type=""radio"" name=""radio:tab1:gender.type.female"" value=""female"">Female</input><br/> <input type=""radio"" name=""radio:tab1:gender.type.other"" value=""other"">Other</input><br/> </body> </html>")) { CUITe_BrowserWindow.Launch(tempFile.FilePath); CUITe_BrowserWindow window = new CUITe_BrowserWindow("test"); // Act CUITe_HtmlRadioButton genderTypeMale = window.Get<CUITe_HtmlRadioButton>("Name=radio:tab1:gender.type.male"); // Assert Assert.IsTrue(genderTypeMale.IsSelected); Assert.AreEqual("male", genderTypeMale.ValueAttribute); window.Close(); } }
public void HtmlTable_GetCellValueUsingTableWithTHInTBODY_Succeeds() { //Arrange using (TempFile tempFile = new TempFile( @"<html> <head> <title>test</title> </head> <body> <table id=""tableId"" border=""1""> <tbody> <tr> <th>Lun</th> <th>Used Space</th> <th>Free Space</th> <th>Usage %</th> <th> </th> </tr> <tr> <td>LUN_04</td> <td>26534605227</td> <td>15405750418</td> <td> <dl> <dd> <dl> <dd> <span>64.27%</span> </dd> </dl> </dd> </dl> </td> <td></td> </tr> </tbody> </table> </body> </html>")) { CUITe_BrowserWindow.Launch(tempFile.FilePath); CUITe_BrowserWindow window = new CUITe_BrowserWindow("test"); CUITe_HtmlTable table = window.Get<CUITe_HtmlTable>("id=tableId"); //Act table.FindRowAndClick(0, "LUN_04", CUITe_HtmlTableSearchOptions.NormalTight); //Assert Assert.AreEqual("LUN_04", table.GetCellValue(1, 0).Trim()); window.Close(); } }
public void Get_UsingMultipleValuesOfClassAttributeWithContainsOperatorOfHtmlSpan_ReturnsTheSpecificElementWithAllSpecifiedClassValues() { // Arrange using (TempFile tempFile = new TempFile( @"<html> <head> <title>test</title> </head> <body> <span name=""span1"" class=""class1"" /> <span name=""span2"" class=""class1 class4"" /> <span name=""span3"" class=""class1 class2 class3"" /> </body> </html>")) { CUITe_BrowserWindow.Launch(tempFile.FilePath); CUITe_BrowserWindow window = new CUITe_BrowserWindow("test"); CUITe_HtmlSpan span3 = window.Get<CUITe_HtmlSpan>("Class~class1;Class~class2"); // Act and Assert Assert.AreEqual("span3", span3.UnWrap().Name); window.Close(); } }
public void HtmlButton_HiddenByStyle_ControlExistsAndCanAssertOnStyle() { //Arrange using (TempFile tempFile = new TempFile( @"<html> <head> <title>test</title> </head> <body> <button id=""buttonId"" style=""display: none;"" >Hidden</button> </body> </html>")) { CUITe_BrowserWindow.Launch(tempFile.FilePath); CUITe_BrowserWindow window = new CUITe_BrowserWindow("test"); //Act CUITe_HtmlButton button = window.Get<CUITe_HtmlButton>("id=buttonId"); //Assert Assert.IsTrue(button.Exists); Assert.IsTrue(button.UnWrap().ControlDefinition.Contains("style=\"display: none;\"")); window.Close(); } }
public void LabelFor_OnHtmlLabel_Succeeds() { //Arrange using (TempFile tempFile = new TempFile( @"<html> <head> <title>test</title> </head> <body> <form> <label for=""male"">Male</label> <input type=""radio"" name=""sex"" id=""male"" value=""male""><br> <label for=""female"">Female</label> <input type=""radio"" name=""sex"" id=""female"" value=""female""><br> <label id=""other"" for=""other"">Other</label> <input type=""radio"" name=""sex"" id=""other"" value=""other""><br> <input type=""submit"" value=""Submit""> </form> </body> </html>")) { CUITe_BrowserWindow.Launch(tempFile.FilePath); CUITe_BrowserWindow window = new CUITe_BrowserWindow("test"); CUITe_HtmlLabel label = window.Get<CUITe_HtmlLabel>("id=other"); //Assert Assert.AreEqual("other", label.LabelFor); window.Close(); } }