mechanize
私は数ページをこすり取るために使用しています。ページ付けはjavascriptの投稿によって実装され、ページ付けのリンクは実際にはinput
ボタンです。これらはフォームに含まれていません。これらのクリックをトリガーする方法はありますか?
私はまだスクリプトに取り組んでおり、またはのいずれmechanize-ruby
かを使用できますmechanize-python
。どちらの解決策も役に立ちます。
ボタンのhtmlは次のとおりです。
<input name="px" value="1" class="pSel" disabled="true\" type="button">
<input name="px" value="2" class="page_select" onclick="apply_pagination(this);" type="button">
<input name="px" value="3" class="page_select" onclick="apply_pagination(this);" type="button">
...
<input name="px" value="10" class="page_select" onclick="apply_pagination(this);" type="button">