The Xpath of the elements I want to read (Accounting, Business, Marketing, Technology) are as follows:
/html/body/table/tbody/tr/td[2]/table/tbody/tr/td[2]/font/a
/html/body/table/tbody/tr/td[2]/table/tbody/tr/td[4]/font/a
/html/body/table/tbody/tr/td[2]/table/tbody/tr[3]/td[2]/font/a
/html/body/table/tbody/tr/td[2]/table/tbody/tr[3]/td[4]/font/a
The id for all of the elements is
//font[@class='wlCategoryLinkBold']/a
The page I am testing is similar to the following:

I have the following test method:
public void ListAllLinksInArray()
{
SelObj = new DefaultSelenium("localhost", 4444, "*iexplore", "http://localhost/crm.aspx");
SelObj.Start();
SelObj.Open("http://localhost/crm.aspx");
SelObj.SelectFrame("content");
List<string> topics = new List<string>();
int count = (int)SelObj.GetXpathCount("//font[@class='wlCategoryLinkBold']/a");
for (int i = 1; i <= count; i++)
{
if (SelObj.IsElementPresent("//font[@class='wlCategoryLinkBold']/a"))
{
string value = SelObj.GetText("//font[@class='wlCategoryLinkBold']/a[" + i + "]"); topics.Add(value);
}
}
string[] arrTopics = topics.ToArray();
System.IO.File.WriteAllLines(@"C:\WriteLines.txt", arrTopics);
}
The above code only writes Accounting (once) in the text file.
If I do:
string value = SelObj.GetText("//font[@class='wlCategoryLinkBold']/a");
I get Accounting (4 times) in the text file.
What is wrong in the loop that is not printing all four links in the text file. Thanks in advance!
