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

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

You need to declare an instance of your class, the resulting script should look something like that:

[-] 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()

This will print "Hello World". You can also have more instances, like helloWindow1, helloWindow2, etc.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.