QTP:General Error while saving the test 的解决方法

简介: 首次保存录制的脚本时,弹出“General Error while saving the test”,解决办法如下: 方法一: 1、在c:\windows\system32下找是否有scrrun.


首次保存录制的脚本时,弹出“General Error while saving the test”,解决办法如下:

方法一:
1、在c:\windows\system32下找是否有scrrun.dll文件,如果没有则从microsoft网站上down一个(一般都有)
2、然后在cmd下执行命令:regsvr32 c:\windows\system32\scrrun.dll

方法二:

Step 1: Just copy following codes into one file, and save it as .vbs

Dim fso, MyFile
Set fso = CreateObject("scripting.FileSystemObject")
Set MyFile = fso.CreateTextFile("C:\testfile.txt",True)
MyFile.WriteLine("This is a test")
MyFile.WriteLine("This is another test")
MyFile.Close

Step 2: Open CMD, and navigate to the folder you saved this file. Then input cscript xxxx.vbs

Step 3: Check the result, you will get the information like "ActiveX component can not create object"

Step 4: Search scrrun.dll file beneath system32, make sure it is exist

Step 5: run "regsvr32 C:\windows\system32\scrrun.dll" on CMD

Step 6: Re-check that vbscript file, there should be ok

Done. Now you can save the test script in your QTP. As we can see, this error was caused by the OS configuration.As I mentioned previously, in this company, illegal software can be used, so actually, OS, windows XP is also one crack version. And I think this error can not be happened on legal OS.


目录
相关文章
|
开发工具 git
IDEA 错误运行’Application’: !invalid format: `命令行过长
刚刚在Git下拉的项目,启动的时候就报错了。记录一下
2643 0
IDEA 错误运行’Application’: !invalid format: `命令行过长
|
6月前
|
C++
解决方案-CMake error: error in configuration process, project files may be invalid(Windows&VS可参考)
解决方案-CMake error: error in configuration process, project files may be invalid(Windows&VS可参考)
955 0
|
6月前
|
数据可视化 Python
常见的bug---5、在安装superset时候报错,Command “python setup.py egg_info“ failed with error code 1
常见的bug---5、在安装superset时候报错,Command “python setup.py egg_info“ failed with error code 1
|
11月前
|
开发者 iOS开发
Xcode运行报错The operation couldn’t be completed. Unable to launch xxx because it has an invalid code...
Xcode运行报错The operation couldn’t be completed. Unable to launch xxx because it has an invalid code...
646 0
|
测试技术
loadrunner 运行脚本-Run-time Settings->General->Additional attributes设置
loadrunner 运行脚本-Run-time Settings->General->Additional attributes设置
77 0
|
存储 测试技术
loadrunner Vugen-Tools General-Options-Replay设置
loadrunner Vugen-Tools General-Options-Replay设置
77 0
|
Android开发
意外导致了gradle project sync failed. Basic functionality will not work properly
意外导致了gradle project sync failed. Basic functionality will not work properly
意外导致了gradle project sync failed. Basic functionality will not work properly
Idea运行报错Error running ‘Application‘: Command line is too long的解决方法
Idea运行报错Error running ‘Application‘: Command line is too long的解决方法
127 0
|
Go 数据库
IDEA连接数据库错误:Server returns invalid timezone. Go to ‘Advanced‘ tab and set ‘serverTimezon‘ 错误
IDEA连接数据库错误:Server returns invalid timezone. Go to ‘Advanced‘ tab and set ‘serverTimezon‘ 错误
117 0
IDEA连接数据库错误:Server returns invalid timezone. Go to ‘Advanced‘ tab and set ‘serverTimezon‘ 错误
[swscaler] Warning: data is not aligned! This can lead to a speedloss 的解决方法【FFmpeg】
[swscaler] Warning: data is not aligned! This can lead to a speedloss 的解决方法【FFmpeg】
626 0
[swscaler] Warning: data is not aligned! This can lead to a speedloss 的解决方法【FFmpeg】