1

我可以知道如何在 SilkTest 中创建一个类吗?我正在使用 Open Agent。我创建了一个类:

winclass hello
  void check()
     print("hi")

我将它包含在包含文件中。但是每当我在测试脚本中为它创建一个对象时,我都会收到一条错误消息

"hello is not a type"

谢谢

4

1 回答 1

0

你需要声明你的类的一个实例,生成的脚本应该是这样的:

[-] winclass hello
    [-] void check()
        [ ] print("Hello world")
[ ] 
[ ] 
[-] window hello helloWindow
    [ ] // this is where you tell silktest how to find helloWindow in your application, for example with an xpath locator
    [ ] 
    [ ] 
[-] testcase foo() appstate none
    [ ] helloWindow.check()

这将打印“Hello World”。您还可以拥有更多实例,例如 helloWindow1、helloWindow2 等。

于 2011-09-13T12:56:28.297 回答