I have xpath expressions for a navigation tree which contains some child branches whicjh can be added:
/html/body/div[@id='application-wrapper']/div/div[2]/div/div[3]/div/div[2]/div/div/div/div[3]/div/**div[1]**/div[1]/table/tbody/tr/td[2]/div[@id='gwt-uid-17']/a
/html/body/div[@id='application-wrapper']/div/div[2]/div/div[3]/div/div[2]/div/div/div/div[3]/div/**div[2]**/div[1]/table/tbody/tr/td[2]/div[@id='gwt-uid-58']/a
/html/body/div[@id='application-wrapper']/div/div[2]/div/div[3]/div/div[2]/div/div/div/div[3]/div/**div[3]**/div[1]/table/tbody/tr/td[2]/div[@id='gwt-uid-83']/a
i need to make it generic statement similar to the given below but unable to do it
//div[@role='treeitem']/a[text()='Situation']/ancestor::table//div[1]//a
Can some one shed some light?
Update from comments
I can see 3 child nodes[ div[1] in first expression, div[2] in second expression and div[3] in third expression] so instead of writing till div[100] i want to put it as div[%d] but I am unable to do so