I have a html code as below.
<div class="rowElem fullSize ">
<div class="jqTransformSelectWrapper" style="z-index: 10; width: 276px;">
<div>
<span style="width: 245px;">MasterCard</span>
<a class="jqTransformSelectOpen" href="#"/>
</div>
<ul style="width: 274px; display: none; visibility: visible; height: 100px; overflow: hidden;">
<li><a class="selected" index="0" href="#">MasterCard</a></li>
<li><li><li>
</ul>
<select id="CardProvider" class="jqTransformHidden" name="CardKey" style="">
<option value="1">MasterCard</option>
<option value="2">VISA</option>
<option value="3">AMEX</option>
<option value="4">DEBIT</option>
</select>
</div>
</div>
Here, this is a dropdown menu where the //div/div/div has just one field displayed. //div/div/ul has four individual li which has the same provider input as the select tag.
I tried with a lot of combinations to choose a specific value from the drop down.
If I use //div/div[@select[id="CardProvider"] with FindElement and it returns the very first value.
If I use //div/div/[@select[id]"cardProvider"]/ul//a - It is returning me with four values.
However I am not able to select the menu as the expected tag select but was div. If I write a query to bring the tagname as select, the text value returned as null.
I didnot give my selenium command as nothing worked and given the html for your reference. Kindly provide me your inputs to overcome this.
