5

我需要单击一个添加按钮。我已经遍历到具有该按钮的页面,从查看结果树中的响应数据验证。我尝试发出获取请求(发布按钮单击 URL),但没有奏效。

下面是按钮的 HTML

<button 
    class="bigbutton ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only"
    onclick="var win = this.ownerDocument.defaultView || this.ownerDocument.parentWindow; if (win == window) { window.location.href='?x=KOGI5TeEN-U*JE6roI7oZMd-OfKSr5oQnRTh7tHdN*Bh66LwE2vEHDjxo9WFuOf7Ti2zcBh-IaE'; } ;return false" 
    style="float: right;" 
    role="button" 
    aria-disabled="false">
<span class="ui-button-text"> Add </span>
4

1 回答 1

4

您需要记录请求以准确查看您的应用程序生成了哪些类型的请求。

按照本教程了解如何去做。

http://jmeter.apache.org/usermanual/jmeter_proxy_step_by_step.pdf

于 2013-08-26T03:56:30.420 回答