So I have something like this:
<div class="X">
<div class="pK">
<div class = "Z">
<i class="Target">
pK is what identifies the whole element, this is the only unique thing and I know it going in but that's all I know except that I want to click on i="Target", child of sibling of parent with div class="pK"
So...
Find.ByExpression("class=X", "with child of", "class=pK", "|", "class=Z", "|", "class=Target" )
I think that's where the piece I am missing would go. Or could I nest them web elements somehow?
Thanks,
Derek