<b>
<s>
<b>---</b> (1)
<b>---</b> (2)
</s>
</b>
<s>
<b>---</b> (3)
<b>---</b> (4)
</s>
Is there a way to target specific tags that are children of another tag using CSS? For example, how can I only select the children
b
tags under ans
tag by specifying the CSS? Would this code:
correctly count all relationships whereself.selenium.get_css_count("css=s b")
s
is the parent andb
is the child, such as 4 in the provided example? If not, can you provide guidance on how to address this issue?If I want to click on the fourth
b
tag located under ans
tag, how would I go about doing that? If I use
, it would select the second one. So, how can I specifyself.selenium.click("css=s b:nth(1))
(s b):nth(3)
since I want to target the fourth relationship of this kind? I hope this explanation is clear.What exactly is the distinction between
nth()
andnth-of-type()
?
Thanks, Sunny