I am trying to select value from drop down using adjacent sibling but does not work
Here is the Html:
input type="text" size="24" autocomplete="off" id="dependsOnQuestion" name="dependsOnQuestion" class="x-form-text x-form-field x-trigger-noedit x-form-focus" readonly="" title="" style="" xpath="1"
img src="/mco/extjs/resources/images/default/s.gif" alt="" class="x-form-trigger x-form-arrow-trigger" id="ext-gen198" xpath="1"
I have tried these ways
(xpath = "//input[@id='dependsOnQuestion']/following-sibling::img[@id='ext-gen198']"
and
css = #dependsOnQuestion ~img "
But it clicks on other element which has image tag
Can anyone help me?