如何使用The Grinder从请求中获取html源代码

时间:2012-11-22 15:47:21

标签: python jython grinder

我有以下脚本:

  def page2(self):
  """GET / (request 201)."""
     result = request201.GET('/mypage/', None,
     ( NVPair('Accept', 'image/gif, image/jpeg, image/pjpeg, image/pjpeg, application/x-   shockwave-flash, */*'), 
     NVPair('Accept-Language', 'en-us'), ))

# here i want to print the html source code from the result

return result

使用Grinder Proxy录制脚本。谢谢。

1 个答案:

答案 0 :(得分:0)

添加以下行:

print result.text

有关其他详细信息,请参阅http://grinder.sourceforge.net/g3/script-javadoc/HTTPClient/HTTPResponse.html