Forum Discussion

UsernameHere's avatar
UsernameHere
Senior Member
8 years ago
Solved

Cannot access api docs

Hi,

 

I am trying to access the api docs for SoapUI but it returns 404. Can someone please confirm this behavior or provide a time frame of when this will be resolved? I really need access to the api docs.

 

Thank you

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.