0

WatirWebdriverを使用してページからカレンダーの日付を選択する方法を知りたいです。

私がテストしているURLは次のとおりです:http ://dev01-new.firestonecompleteautocare.com/appointment/schedule-appointment.htm?execution = e2s4

カレンダーの日付を選択するには、3番目のステップに進む必要があります。

スクリプトの実行など、さまざまな方法でカレンダーを選択しようとしましたが、うまくいかないようです。

browser.execute_script("DP_jQuery_1360620655913.datepicker._selectDay('#choice1\\-date',1,2013, this);return false;")

どんな助けでも大歓迎です。

4

1 に答える 1

0

onclick日付を表示するテーブル セルの属性があります。

<td onclick="DP_jQuery_1360625373055.datepicker._selectDay('#choice1\\-date',1,2013, this);return false;" class=" "><a href="#" class="ui-state-default">13</a></td>

このシナリオでは、 fire_eventメソッドを使用できるはずです。例:

browser.link(:id => "foo").fire_event "onclick"
于 2013-02-11T23:48:10.440 に答える