0
我嘗試在Selenium 2 Web Driver中選擇日期形式的datepicker下拉菜單。到目前爲止,我沒有找到任何解決方案的問題。選擇datepicker元素Selenium Web驅動程序
我在Selenium 2 Java中編程。
的網頁,我測試是http://intercity.pl 這是我的HTML我想選擇:
<div class="datepicker datepicker-dropdown dropdown-menu" style="display: block; left: 1097px; top: 34.5px;">
<div class="datepicker-days" style="display: block;">
<table class=" table-condensed">
<thead>
<tr>
<th class="prev" style="visibility: visible;">«</th>
<th class="datepicker-switch" colspan="5">Grudzień 2015</th>
<th class="next" style="visibility: visible;">»</th>
</tr>
<tr>
<th class="dow">Pn</th>
<th class="dow">Wt</th>
<th class="dow">Śr</th>
<th class="dow">Cz</th>
<th class="dow">Pt</th>
<th class="dow">So</th>
<th class="dow">N</th>
</tr>
</thead>
<tbody>
<tr>
<td class="old day">30</td>
<td class="day">1</td>
<td class="day">2</td>
<td class="day">3</td>
<td class="day">4</td>
<td class="day">5</td>
<td class="day">6</td>
</tr>
<tr>
<tr>
<tr>
<tr>
<tr>
</tbody>
<tfoot>
</table>
</div>
<div class="datepicker-months" style="display: none;">
<table class="table-condensed">
<thead>
<tbody>
<tr>
<td colspan="7">
<span class="month">Sty</span>
<span class="month">Lu</span>
<span class="month">Mar</span>
<span class="month">Kw</span>
<span class="month">Maj</span>
<span class="month">Cze</span>
<span class="month">Lip</span>
<span class="month">Sie</span>
<span class="month">Wrz</span>
<span class="month">Pa</span>
<span class="month">Lis</span>
<span class="month active">Gru</span>
</td>
</tr>
</tbody>
<tfoot>
</table>
</div>
<div class="datepicker-years" style="display: none;">
<table class="table-condensed">
<thead>
<tbody>
<tr>
<td colspan="7">
<span class="year old">2009</span>
<span class="year">2010</span>
<span class="year">2011</span>
<span class="year">2012</span>
<span class="year">2013</span>
<span class="year">2014</span>
<span class="year active">2015</span>
<span class="year">2016</span>
<span class="year">2017</span>
<span class="year">2018</span>
<span class="year">2019</span>
<span class="year new">2020</span>
</td>
</tr>
</tbody>
<tfoot>
</table>
</div>
</div>
你能分享到網頁的鏈接嗎? – drets
http://intercity.pl – user2779917
只是經常點擊項目 – drets