Questions tagged [ready-api]

The ReadyAPI tag can be used to refer the professional versions of SmartBear's API testing products such as SoapUI Pro, LoadUI Pro, Secure, and ServiceV.

ReadyAPI is an integrated suite of API testing tools including:

  • soapUI Pro (functional testing)
  • LoadUI Pro (performance testing)
  • ServiceV Pro (service virtualisation/mocking)

Information to provide when asking questions

  • Which version of ReadyAPI are you using? It may be relevant because libraries and features and the API can change.
  • Are there any warnings or errors in the logs? Check the tabs along the bottom of the UI and include these in the question (as text, not an image) if they look relevant.
  • Provide a minimal reproducible example, particulary if your question concerns Groovy or JavaScript. A minimal reproducible example is not just a big code dump, but something that succinctly reproduces your problem.
  • Show what code you've tried or describe the steps you've taken so far.
  • As well as describing what you're having a problem with, it can also be helpful to say why you're doing it this way. Someone may know of a better way to do the same thing.

Without the above information it's hard for others to understand your problem and provide answers and you may risk having your question put on hold for being too broad or unclear.

Also remember to check out the tutorials and sample projects. You may be able to test some scenarios and ideas in these projects to better understand your problem.

Resources

233 questions
0
votes
1 answer

a way to use jdbc like statement with property in soap ui

I've been struggling with this issue for some time now but I found some workarounds, but now I need it and can't really find a good answer for me. I need to use in a jDBC query in ready api the 'like' statement and with all combos I could think of…
0
votes
1 answer

Groovy Powershell and AWS CLI dynamo DB

I've been recently given the task of connecting to dynamo DB via SOAP UI in order to assert that my companies APIs are creating the correct content. After hitting a number of brick walls attempting to access Dynamo DB data, we've settled on…
saab613
  • 213
  • 1
  • 2
  • 19
0
votes
2 answers

How do I get a json node value from json string using json path?

Below is my JSON file { "squadName": "Super hero squad", "homeTown": "Metro City", "formed": 2016, "secretBase": "Super tower", "active": true, "members": [ { "name": "Molecule Man", "age": 29, "secretIdentity":…
Srinivasan Ramu
  • 1,033
  • 4
  • 11
  • 23
0
votes
1 answer

how to iterate through excel data source step in readyapi to pass values to grrovy test step

I am novice in groovy scripting however trying to get some repetitive work done by automating a generation of an XML file creation. So the question is: I have an excel data source step in ready api and i would like to parametrize all values so they…
sanny
  • 1
  • 2
0
votes
1 answer

Trying to read a composite project file from java getting an error as "Unexpected element: CDATA"

Not able to read composite project file from java getting an error as "Unexpected element: CDATA". WsdlTestCase testCase = new WsdlProject("src/test/resources/xml/SoapUI") .getTestSuiteByName("TestSuite 1") …
0
votes
2 answers

How to stop testcase execution if request fails in soapui using script assertion?

If the soap request has a failure means Status != "HTTP/1.1 200 OK" , testCase should stop and no further steps should run There is a way to do this in groovy, but i do not want an extra test step to be added in testcase def headers =…
Gaurav Khurana
  • 3,423
  • 2
  • 29
  • 38
0
votes
1 answer

[ReadyAPI]: Connect to Database in Groovy script

Need help: Upgraded my ReadyAPI to 2.3 version from 2.0. I have groovy script to connect to Databases defined at project level. It is throwing following error as below after upgrade. Error: Caused by: groovy.lang.MissingMethodException: No…
Sai
  • 1
  • 1
0
votes
1 answer

Multi Environment Support in Soap UI Pro

Soap UI Pro is very popular for Multi Environment Support. But, what is the use of considering it as one of the features, when we can change Environments even in Soap UI. We can simply change or add multiple endpoints in service endpoint. Is there…
Sam
  • 62
  • 8
0
votes
1 answer

Update apache commons for readyAPI

I need to upgrade apache commons for readyAPI , I have two solutions Leave the current version in the lib and put the new one in the ext : didn't work) Delete the current version in the lib and replace it with the new one : readyAPI freeze on…
Hamza Amami
  • 94
  • 4
  • 21
0
votes
1 answer

ReadyAPI - How to store a 'run test case' step response?

I a have several testSuites : one contains all the REST APIs I can use => api test suite one contains higher level testing that will use these APIs => use cases test suite In my use cases, I call the api test suite requests using the 'run test…
A.Joly
  • 2,317
  • 2
  • 20
  • 25
0
votes
3 answers

Import project from git - ready api

I'm trying to import myself into a ready api 2.2.0 project from GIT, but after entering the below I get what's on the screen. When I enter the folder that I have created, a .git folder is created Is it possible to somehow get rid of this folder not…
danio900409
  • 265
  • 2
  • 6
  • 22
0
votes
1 answer

Request not working in ReadyAPI though it works in swagger or Postman

I have a problem with requests I imported from swagger. I have a request that looks like /m2m/fim/items?filter=(tags=DEVICE)&exclude=tags,objectClass,href,operations,attributes,metadata,factory&expand=properties&limit=20 With swagger I can test it,…
A.Joly
  • 2,317
  • 2
  • 20
  • 25
0
votes
0 answers

Ready API 2.2.0 skip SSLHandShakeException

I work in Ready Api 2.2.0 and I have tests which do not fail when a certificate is invalid on the server side (although simple java tests fail as expected). I need that as negative cases. My question is: Why ready API skip handshake exception and…
0
votes
2 answers

Can JSON String format be converted to Actual format using groovy?

I have the following JSON String format getting from external source:- What kind of format is this actually? { id=102, brand=Disha, book=[{ slr=EFTR, description=Grammer, data=TYR, rate=true, numberOfPages=345, maxAllowed=12, …
avidCoder
  • 440
  • 2
  • 10
  • 28
0
votes
2 answers

How to compare the HashMap data and the ArrayList data?

I have the following HashMap data printing only the keySet(): - [P001, P003, P005, P007, P004, P034, P093, P054, P006] And the following ArrayList data as an output: - [P001] [P007] [P034] [P054] This is how it is getting printed for both of…
avidCoder
  • 440
  • 2
  • 10
  • 28