Hi,
i have a small problem with object identification: My structure is:
<span class="set">
<span class="requiredKey" title="Application">Application</span>
<span class="value">
<input type="text" class="Textbox ""></span>
</span>
So, input type in the span class "value" should be identified by title "Application" in previous span class.
Any soultion? i ve tried different combinations with Axis declaration but it didnt help for me
Object identification with the same hierarchy
Re: Object identification with the same hierarchy
Hi rholdberh,
here is an xpath:
here is the blog post where I got the idea: http://www.ranorex.com/blog/ranorexpath ... fy_Sibling
here is a user guide on ranorexpath:
http://www.ranorex.com/support/user-gui ... xpath.html
Best Regards,
Zoltan
here is an xpath:
Code: Select all
\\span[@title='Application']\following-sibling::span[@class='value']\input
here is a user guide on ranorexpath:
http://www.ranorex.com/support/user-gui ... xpath.html
Best Regards,
Zoltan