在 Silktest 中创建一个类
我可以知道如何在 SilkTest 中创建类吗?我正在使用 Open Agent。 我创建了一个类:
winclass hello
void check()
print("hi")
我将其包含在包含文件中。但是每当我在测试脚本中为其创建一个对象时,我都会收到一条错误消息“
"hello is not a type"
谢谢”
May I know how to create a class in SilkTest?I am using Open Agent.
I created a class:
winclass hello
void check()
print("hi")
I included it in the include file.But whenever i create an object for it in Test Script,I get an error saying
"hello is not a type"
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要声明类的实例,生成的脚本应如下所示:
这将打印“Hello World”。您还可以有更多实例,例如 helloWindow1、helloWindow2 等。
You need to declare an instance of your class, the resulting script should look something like that:
This will print "Hello World". You can also have more instances, like helloWindow1, helloWindow2, etc.