How to select TreePanel node(Parent/child) in selenium java
- by sai kumar
My Application having TreePanel Element and I have to select the root node at the begining to add child node underit.
When I try to click on root node using its XPATH
String locator = "//div[@id='resultPropertyTree']/div/table/tbody/tr/td";
selenium.clickAt(locator,"0,1");
The entire element is going invisible hence script throwing debug exception saying the element is invisible/not got the focus etc.
Can anybody help me out on handling above is appreciated.
Regards
Sai