Forum Discussion

5 Replies

  • nmrao's avatar
    nmrao
    Icon for Champion Level 1 rankChampion Level 1
    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.