Solved
Forum Discussion
5 Replies
- HKosova
Alumni
API docs are back up, sorry for the trouble.
Pro: http://www.soapui.org/apidocs/pro/index.html
Open-source: http://www.soapui.org/apidocs/index.html
- nmraoCommunity HeroUnderstand what you are going thru.
I am sure SmartBear team might doing some update and hope to see it soon.
Mean while I could get you going with little tip.
For any object in the groovy script, you can just do:
To see what class:
log.info object.metaClass
To see what methods in that class
log.info object.metaClass.methods
To see just method names:
log.info object.metaClass.methods.name
Hope these are helpful till you javadoc available.