How to select a list element that is hidden or in a table

126 Views Asked by At

I need some help understanding the logic behind selecting list elements when they are in a table and may be hidden. Earlier I had posted a similar question and was able to figure out how to get to the elements however this one eludes me.

The last try was this: @b.table(:class => "ContractPriceTable").select_list(:class => "ContractPriceSourceLocale").option(:text => "Japanese (Japan)").select

<table id="ContractPriceTable" class="table table-bordered table-nomargin ContractPriceTable">
    <tr>
    <td>
    <div id="s2id_Contracts_142c5493-fc46-4608-91f9-addfcc04162d__ContractTranslationQualities_293ac7e9-f083-4c27-abeb-41b90e907716__ContractPrices_7fc81280-14c2-4a1b-a659-af99105af152__CurrencyId" class="select2-container select2 visible currency-select">
    <a class="select2-choice" tabindex="-1" onclick="return false;" href="javascript:void(0)">
    <input id="s2id_autogen3" class="select2-focusser select2-offscreen" type="text">
    </div>
    <select id="Contracts_142c5493-fc46-4608-91f9-addfcc04162d__ContractTranslationQualities_293ac7e9-f083-4c27-abeb-41b90e907716__ContractPrices_7fc81280-14c2-4a1b-a659-af99105af152__CurrencyId" class="select2 visible currency-select select2-offscreen" name="Contracts[142c5493-fc46-4608-91f9-addfcc04162d].ContractTranslationQualities[293ac7e9-f083-4c27-abeb-41b90e907716].ContractPrices[7fc81280-14c2-4a1b-a659-af99105af152].CurrencyId" data-val-required="The CurrencyId field is required." data-val="true" tabindex="-1">
    <option value="b32ad865-00b7-4969-b9af-053538405bf8">Yuan (CNY) - ¥</option>
    <option value="a6f8185b-4119-4b4b-8c23-7211bef8b2bd">Japanese (Japan)</option>
0

There are 0 best solutions below