Forum Discussion

5 Replies

    • nmrao's avatar
      nmrao
      Champion Level 3
      HKosova, thank you for the notification. Any specific updates made to the api docs this time?
  • nmrao's avatar
    nmrao
    Champion Level 3
    Understand 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.