随笔 - 18  文章 - 0  评论 - 14  阅读 - 16904 
  2010年12月8日

一个人的孤独,一个人的封闭,不如一起努力! 总是有使用VSTS WebTest的同学问,我的Web测试记录器无效了,弹出IE后,记录的按钮老是灰色的。前面我写过一篇文章VSTS 启动web测试记录器无效 里面提供了一些解决的方法,但反馈是无效。后面我自己试用了一个方法,比较土,就是如果你安装的是IE6.0,碰到此问题可以安装IE7.0解决,解决后如果你觉得IE7.0不好用,可以把IE7.0卸载掉,问题也不会出现,这个方法我在2台电脑上实验过,都成功了。
刚好,今天又看到了一篇文章(怎么不早点看到呢),在Michael Taute's Blog上专门写了一篇Diagnosing and fixing Web Test recorder bar issues ,里面详细分析了在不同IDE,不同操作系统碰到此问题如何解决的方法,有现成的了,那也不翻译了,转贴在下面,再碰到此问题的同学可以参照修复。

Diagnosing and fixing Web Test recorder bar issues.

Since VSTS 2005 shipped there have been a variety of different questions raised by customers over the years. One topic which comes up somewhat frequently is a disabled or nonexistent web test recorder bar when recording web tests. Since it can be frustrating to diagnose and fix these problems, I’ve compiled a list of the most common reasons for this to happen and potential fixes for each.

If you know of something that fits the “My web test recorder bar isn’t working” criteria and isn’t on the list, please let me know and I’ll try to add it.

VSTS 2005 : Any OS : Recorder bar is not displaying when recording a webtest.

Fix: Upgrade to VSTS 2005 SP1.   There are a few bugs preventing the webtest recorder bar from displaying under certain circumstances that were fixed in SP1.  If you're having trouble in VS 2005 and haven't yet upgraded to SP1, that's your first step.

VSTS 2005 : Vista : Recorder bar displays, but the controls are disabled.

Fix: Webtest recording using VS 2005 on Vista only works when running in elevated mode.  [When launching VS 2005, right click the icon and choose to run as administrator]

VSTS 2005, 2008 : Windows 2003 / Vista : Recorder bar comes up, but the controls are disabled.

Fix : the web test recorder bar does not work with IE enhanced security enabled. (VSTS 2008 will actually display an error message telling you this) IE enhanced security can be removed from within the Control panel / Add Remove Programs / Windows Setup

VSTS 2008 : Vista (64 bit) : Recorder bar does not appear when recording a new webtest

Fix: This is actually a Vista bug. The fix is to delete your Vista user profile settings and then log back in. After your user profile is recreated, webtest recording works again. Here are the detailed resolution steps:

1)      Go to control panel

2)      Open system

3)      Click advanced

4)      Click User Profiles

5)      Find yours and delete it

6)   Log back into the machine with your account and create a web test.

VSTS 2005, 2008 : Any OS : Recorder bar does not appear when recording a new webtest

Fix: Make sure that you don’t have browser add-ons disabled. Specifically, the web test recorder helper add-on needs to be enabled. For Internet Explorer 7, you can find this setting in Tools / Internet options / Program [tab] / Manage add-ons. From there, verify that Microsoft Web Test Recorder Helper is enabled.

VSTS 2008 : Any OS (IE 7) : When recording, a new web browser opens up and the new browser doesn’t have a recorder bar.

Fix:  The reason for this is that by default, about:Blank is displayed in the browser when you start recording. This website is (by default) in the internet security zone (protected mode: on). When you open a website in a different zone (without protected mode) it will be handled by a new instance of internet explorer.  

The fix is to do one of 2 things: a) Move about:blank into the zone where you’re attempting to record from or b) Change the default web page which is brought up when you start recording to something in the same zone as you’re trying to record. You can accomplish this by setting the following registry key

[HKEY_CURRENT_USER"Software"Microsoft"VisualStudio"9.0"EnterpriseTools"QualityTools"WebLoadTest]

"StartingLocation"="http://server/website"

Published Friday, November 09, 2007 5:20 PM by Mike Taute

Filed under: tsbt-tst
====================

工具 - internet选项 - 程序 - 管理加载项,enalbe了web test recorder help之后,,成功了!!!!!!!!

posted @ 2010-12-08 09:56 海风吹呀吹 阅读(626) 评论(0) 推荐(0) 编辑
  2010年9月13日
摘要: //遍历option和添加、移除optionfunction changeShipMethod(shipping){var len = $("select[@name=ISHIPTYPE] option").lengthif(shipping.value != "CA"){ $("select[@name=ISHIPTYPE] option").each(function(){ if($(this... 阅读全文
posted @ 2010-09-13 12:26 海风吹呀吹 阅读(277) 评论(0) 推荐(0) 编辑
  2010年8月7日
摘要: 摘要:了解为 ASP.NET Web 页面建立的事件模型,以及 Web 页面转变为 HTML 过程中的各个阶段。ASP.NET HTTP 运行时负责管理对象管道,这些对象首先将请求的 URL 转换成 Page 类的具体实例,然后再将这些实例转换成纯 HTML 文本。本文将探讨那些作为页面生命周期标志的事件,以及控件和页面编写者如何干预并改变标准行为。(本文包含一些指向英文站点的链接。)目录简介 真... 阅读全文
posted @ 2010-08-07 10:21 海风吹呀吹 阅读(748) 评论(0) 推荐(0) 编辑
  2010年6月9日
摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--<%db="data.mdb"setconn=server.createobject("Adodb.Connection")connstr="Provider=Microsoft.Jet.OLE... 阅读全文
posted @ 2010-06-09 17:09 海风吹呀吹 阅读(272) 评论(0) 推荐(0) 编辑
  2010年5月21日
摘要: Unable to start debugging on the web server. The IIS worker process for the launched URL is not currently running.解决办法,右键你建立的网站,选择编辑绑定,把IP地址改为“全部未分配”!问题解决参考老外给的答案:According to others, if y... 阅读全文
posted @ 2010-05-21 14:46 海风吹呀吹 阅读(551) 评论(0) 推荐(0) 编辑
  2009年6月17日
摘要: 数据库设计的5种常见关系,其中本文主要讲“多态”关系结构,以手机为例。 1,配置关系--和其他表无任何关系的表。 例如:webConfig里的东西你存储到表里。 2,一对多关系,一张表包含另外一个表的主键作为外键。 例如:手机.品牌id=2,这里的2是[品牌名称表]的id字段为2的纪录,品牌名称是"Nokia"。一个手机只能有一个品牌。 3,多对多,需要3张表,有一个包含两... 阅读全文
posted @ 2009-06-17 09:53 海风吹呀吹 阅读(437) 评论(0) 推荐(0) 编辑
  2008年3月2日
摘要: ISAPI_Rewrite 无限二级域名 防盗链 阅读全文
posted @ 2008-03-02 10:59 海风吹呀吹 阅读(1254) 评论(0) 推荐(1) 编辑
  2008年1月29日
摘要: 在线编辑器的使用和配置可以说在所有的在线编辑器中,FCKeditor是目前互联网上最好的编辑器,功能强大,支持多种浏览器,无平台限制,可以和多种WEB语言融合,多语言支持,开源等~~ 对于一个全新的网站,FCKeditor就可以直接拿过来用了,不需要进行什么修改。但是对于绝大多数的已有网站而言,FCKeditor的一些设置并不适合自己的使用,这篇文章旨在告诉你简单的修改FCKeditor以方便您的... 阅读全文
posted @ 2008-01-29 10:28 海风吹呀吹 阅读(2216) 评论(2) 推荐(0) 编辑
  2008年1月20日
摘要: TEXTBOX,TextMode,MultiLine,前台,表格,撑大,解决方案 阅读全文
posted @ 2008-01-20 14:33 海风吹呀吹 阅读(1366) 评论(3) 推荐(0) 编辑
  2008年1月18日
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2008-01-18 11:12 海风吹呀吹 阅读(18) 评论(0) 推荐(0) 编辑
点击右上角即可分享
微信分享提示