An intuitive utility to help find the CSS path to UI elements on a webpage. These paths are used frequently in a variety of front-end development and QA automation tasks.
One of a set of tools we're offering as a way of saying thank you for being a part of the community.
private void Page_Load(object sender, System.EventArgs e)
{
wndListBox.Attributes.Add(
if (!IsPostBack)
{
wndListBox.DataSource = this.CreateTestStringArray
wndListBox.DataBind();
}
}
private ArrayList CreateTestStringArray()
{
ArrayList myValues = new ArrayList();
myValues.Add("Naveen");
myValues.Add("Foo");
myValues.Add("Bar");
myValues.Add("Quax");
myValues.Sort();
return myValues;
}