or
Can somebody please explain what exactly this code statement from the tutorial does:
Assert.IsTrue(ActiveBrowser.ContainsText(Data["Col1"].ToString()));Data["Col1"].ToString() - this is the way to access data for the data bound test.
Any suggestions on why Test Studio is hanging when I am attempting to Create a new Test List?
var dialog = new DownloadDialogsHandler( Global.MANAGER.ActiveBrowser, (String.IsNullOrWhiteSpace(filePath) ? DialogButton.CANCEL : DialogButton.SAVE), (String.IsNullOrWhiteSpace(filePath) ? String.Empty : Global.GetPath(filePath)), Global.MANAGER.Desktop ); try { downloadControl.Click(); Global.MANAGER.ActiveBrowser.WaitUntilReady(); dialog.WaitUntilHandled(timeout); } catch (TimeoutException) {} finally {}