Questions tagged [runscope]

Runscope is a cloud based service that enables the monitoring, measuring and testing of Web APIs.

Runscope documentation can be found here.

27 questions
9
votes
2 answers

API Testing Using SoapUI vs Postman vs Runscope

I'm new to using applications to test backend APIs. I've always just manually tested using the front-end applications. What I would like to do is to use an app that is designed specifically for backend API testing. So far, I've been directed to…
Brenda
  • 247
  • 1
  • 4
  • 14
4
votes
1 answer

How to send a multipart/mixed HTTP POST request through Runscope?

I want to send a HTTP POST request with Content-Type: Multipart/mixed using Runscope. Any help/guidance would be great.
melena
  • 43
  • 2
3
votes
1 answer

Inserting Dynamic Data and Request Chaining Runscope

When the first step return a json object like this { "success":true, "total":21, "items": [ {"id":"762"}, {"id":"763"}, {"id":"764"} ] } how can i assign variable id to the first "id" item in response i have done it like this but it didn't…
Waqar Haider
  • 929
  • 10
  • 33
3
votes
2 answers

XPath for parsing SOAP response

Given the below SOAP response, how would I use XPATH to do some testing/validation of the content of the response? NOTE: I am using RunScope to test our API.
coach_rob
  • 877
  • 13
  • 28
2
votes
1 answer

Retrieve data from response body using Runscope's Trigger URL

My question is very similar to "How to retrieve data from response body when using trigger URL" - I'm also attempting to run a test case created on Runscope using Trigger URL to retrieve data from response body but I am only getting details as shown…
2
votes
1 answer

How can I check if my Webservice is working with Runscope and random strings?

I have a very basic check if my webservice is still up and running by sending a query to my-endpoint.com?heartbeat={{utc_datetime}}. The service simply returns the value of heartbeat. However, if I set the Assertion Text Body equals…
Martin Thoma
  • 124,992
  • 159
  • 614
  • 958
2
votes
0 answers

Runscope: Using variables when asserting XML body

I'm using runscope and am facing a problem with using variables in xpath. Imagine I receive a response in the XML form and wish to check if /AllTickets/Ticket[TicketId/text()=12345]/Name/text() is equal to somename. It works just fine, as long as I…
2
votes
0 answers

Using runscope with mailgun - where to start?

I've set up rails application to receive mails and create bookmarks from. Herefore I included the gem 'mailgun'. Because its not working correctly however I want to use runscope to get a better insight on which data is sent. I've done the following…
user3706202
  • 197
  • 1
  • 3
  • 14
2
votes
1 answer

How to retrieve data from response body when using trigger URL

I am using trigger URL to run a test case created on Runscope. In response I am getting only details as shown in Runscope documentation. For eg. Response Sample data: { "data": [], "error": null, "meta": {"status": "success"} } But I need the…
2
votes
1 answer

Runscope – How can I send a JSON body with my POST request?

I'm using Runscope to test my Node/Express app and I can't figure out how to send a JSON Body via a POST request in Runscope. Everything I've tried can't be parsed by the express bodyParser. The JSON I'm want to send looks like this: {…
ac360
  • 7,735
  • 13
  • 52
  • 91
1
vote
1 answer

How to sign request with private key in Runscope test?

I am trying to add Runscope test to verify signature of the request I am sending. In first step I want to sign this request, and then send it to the service which is going to verify it. I know I can add script in Runscope and that I can use CryptoJS…
Asia
  • 13
  • 3
1
vote
0 answers

How can we pull Runscope data into Grafana?

We have grafana 7.x ready and now we want to get data from runscope api to grafana. We want dashboards for api test performance, any failure or any other issue to monitor. Thanks
Jayesh
  • 3,661
  • 10
  • 46
  • 76
1
vote
1 answer

How to Order Runscope test steps using Terraform

When creating a Runscope testing using the Runscope provider for Terraform, each test is created as a separate resource that references the test resource. resource "runscope_test" "api" { name = "api-test" description = "checks the api…
Feckmore
  • 4,322
  • 6
  • 43
  • 51
1
vote
1 answer

How to save global variable in runscope

I want to save a value from 1 API request body to Shared Environments.Where i can use that value in other API`s Test(So how to reuse in another request body and headers). Note: I don`t want to use subtest.
Kunal Kaushal
  • 57
  • 1
  • 6
1
vote
2 answers

How to listen the runscope test result?

we are triggering the runscope test using triggerid of the specific test. How can we learn the status of the test so we can progress our builds ?
1
2