51Testing软件测试论坛

标题: Python: 使用Python调用HTTPWatch访问IE [打印本页]

作者: 飞儿乐队    时间: 2018-5-11 14:14
标题: Python: 使用Python调用HTTPWatch访问IE
概览

我们使用Python调用HttpWatch自动化接口来记录和分析HTTP流量,通过使用IE加载一个简单的页面。

程序操作

这个程序通过让用户输入一个网页的URL来监测。如果用户只是简单的敲了回车键,则使用HttpWatch的主页。

得到URL之后,第一步就是创建Controller的实例,然后使用它创建IE的实例。注意这个Controller类的IE属性,
它返回一个IE对象的引用,可以提供方法来创建HttpWatch插件和浏览器实例。

  1. import win32com.client

  2. # Create a new instance of HttpWatch in IE
  3. control = win32com.client.Dispatch('HttpWatch.Controller')
  4. plugin = control.IE.New()

  5. #Creating a New Instance of the HttpWatch Plug-in in IE
  6. plugin.Log.EnableFilter(false)
  7. plugin.Record()
复制代码

我们现在可以启动录制HTTP请求和响应。 首先通过调研日志对象的EnableFilter方法把Filtering disable掉,然
后调用插件的Record方法来开始捕捉流量。

#Start Recording HTTP Traffic   
plugin.Log.EnableFilter(false)
plugin.Record()
载入URL

Wait的参数-1,指可以无限期地等下去

plugin.GotoURL(url)
control.Wait(plugin, -1)
展示页面统计信息

  1. if plugin.Log.Pages.Count != 0 :
  2.     print "nPage Title: '", plugin.Log.Pages(0).Title , "'"
  3.     # Display summary statistics for page
  4.     summary = plugin.Log.Pages(0).Entries.Summary
  5.     print "Total time to load page (secs):      ", summary.Time
  6.     print "Number of bytes received on network: ", summary.BytesReceived
  7.     print "HTTP compression saving (bytes):     ", summary.CompressionSavedBytes
  8.     print "Number of round trips:               ", summary.RoundTrips
  9.     print "Number of errors:                    ", summary.Errors.Count
复制代码



作者: Miss_love    时间: 2020-12-29 16:47
支持分享




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2