我正在从事一个网络抓取项目,我知道如何通过 HtmlAgilityPack 从目标页面获取某些数据。但我不知道在该页面的帖子信息中发送什么。该页面未通过查询字符串发送任何信息。该页面中有三个文本框,两个复选框和一个搜索按钮
当我用萤火虫检查按钮时,它会提供以下信息
<img border="0" align="top" onclick="javascript:PVO_PId_Search(
document.ProtocolForm.searchplt,
document.ProtocolForm.towcheck.checked,
document.ProtocolForm.collateralcheck.checked,
document.ProtocolForm.selState[document.ProtocolForm.selState.selectedIndex].value,
document.ProtocolForm.selPltType[document.ProtocolForm.selPltType.selectedIndex].value)" onmouseout="this.className='flyOut'" onmouseover="this.className='flyOver'" alt="Search" value="PSearch" name="PSearch" onload="javascript:updateButtonWithOneTxtbox(document.ProtocolForm.searchplt,this,'v_images/Search_button.gif','v_images/Search_button_grey.gif');" src="v_images/Search_button.gif" class="flyOut">
现在我的问题是,是否有任何可用的工具或 firefox 插件可供我使用和监视(或调试)它传递的 Post 信息类型?