I am able to go till Parent folder and after on Click Childs will display.
how to write method to get dispalyed child (ON CLICK).
I tried this,
public void TAB1SELECT() {
Actions action = new Actions(_driver);
action.MoveToElement(_driver.FindElement(By.XPath("//[@id='dijit__TreeNode_14']/div[1]/span[3]/span[1] "))).Build().Perform();
var element = (new OpenQA.Selenium.Support.UI.WebDriverWait(_driver, TimeSpan.FromSeconds(30))).Until(SeleniumExtras.WaitHelpers.ExpectedConditions.PresenceOfAllElementsLocatedBy(By.Id("dijit__TreeNode_36_label")));
element[-1].Click();
}
}
As you intend to click so instead of
PresenceOfAllElementsLocatedBy
you need to useVisibilityOfAllElementsLocatedBy(By)
. Additionally, instead of using index as-1
you need to use the index0
for the first element and so on. So your effective code block will be: