用丝绸创造一个班级

时间:2011-08-23 14:25:10

标签: automation silktest

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

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

我将它包含在include文件中。但是每当我在Test Script中为它创建一个对象时,我都会收到错误

"hello is not a type"

由于

1 个答案:

答案 0 :(得分: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等。