Batch querying test cycle execution status
I have multiple TestCycle folder. In each folder there are 10–20 TestCycles. I want to determine the status of the executions. For example, if I have 50 folders and each contains 20 TestCycles, then I have to make 1000 calls because each individual TestCycle can only be queried separately. Isn’t there a way to query multiple TestCycles at once?60Views0likes0CommentsTest run creation request creates a test run but doesn't add any test
Hello everyone! My problem is that I've tried to use Cucumber Studio API and as I suppose I did it in the wrong way. I've tried to create a test run with a bunch of test using https://studio-api.cucumber.io/#create-a-test-run command. That's how it looks like POST https://studio.cucumber.io/api/projects/XXXXXXX/test_runs Body : {"data":{"attributes":{"name":"XXXXXXXX","description":"Pls work","scenario_ids":[37372314,37372316,37372317]}}} Headers : (5) uid : XXXXXXXXXXXX Accept : application/vnd.api+json; version=1 access-token : XXXXXXXXXXXX Content-type : application/json client : XXXXXXXXXXXX And it creates a test run but it looks like As well I tried update command but it works the same way. The server answer with a positive code 201 and tells me that everything is OK [Success: {"data":{"id":"XXXXXXX","type":"test-run","attributes":{"created-at":"2023-02-06T09:41:13.126Z","updated-at":"2023-02-06T09:41:13.126Z","last-author":"XXXXXXXXXX","name":"XXXXXXXXXXXXXX","description":"Pls work","statuses":{},"archived":false,"external":false},"relationships":{"tags":{}},"links":{"self":"/test-runs/XXXXXX"}}}] What am I doing wrong?907Views0likes0CommentsNo syntax error in SwaggerHub - but cannot download a resolved YAML file
Hi, I have a valid Swagger definition (or at least SwaggerHub doesn't report any errors) - but when I try to download the resolved YAML file (or the resolved JSON file) an error is displayed: How do I find out where the error is? (I am aware that I have a definition that is declared but never used - but that can hardly be the problem!?!) Link to API: https://app.swaggerhub.com/apis/dcsaorg/DCSA_TNT/2.1.0Solved1.3KViews0likes2CommentsGet Progress Information in Cycle by API
Could we get Progress(or detail status) Information by api when we send get cycle request? According to this site https://support.smartbear.com/zephyr-scale-cloud/api-docs/#operation/createTestCycle We can get only status (not executed, done).1.5KViews0likes1CommentGetting started with API, having trouble
I was met with the following message many times. I tried letting it just post, no luck. I tried finding the invalid HTML, no luck. So please read the attached word doc to understand my issue. I am having troubles with calling the API. Login works, but subsequent calls do not.5.7KViews0likes1CommentERROR:java.net.SocketException: Connection reset
Running SoapUI 5.0.0 Trying to send a SOAP document to an EHR API and am getting the above error. The detail after that line looks similar to the other reported issues of this type: java.net.SocketException: Connection reset at java.net.SocketInputStream.read(Unknown Source) at java.net.SocketInputStream.read(Unknown Source) at sun.security.ssl.InputRecord.readFully(Unknown Source) at sun.security.ssl.InputRecord.read(Unknown Source) at sun.security.ssl.SSLSocketImpl.readRecord(Unknown Source) at sun.security.ssl.SSLSocketImpl.performInitialHandshake(Unknown Source) at sun.security.ssl.SSLSocketImpl.writeRecord(Unknown Source) at sun.security.ssl.AppOutputStream.write(Unknown Source) and there is no other clues offered in the text below this group. Sending a REST message works just fine, but SOAP is the standard for the set of APIs that my team is working with. I tried removing each header line individually, performing a test run between each removal: HOST = <servername>.corp.<domain>.com SOAPAction = "urn:<ehrsystem-com>:PatientAccessMobile.2020.Services.GetMessageDetail" Accept-Encoding = gzip,deflate User-Agent =Apache-HttpClient/4.5.5 (Java/12.0.1) Connection = Keep-Alive Content-Type = text/xml;charset=UTF-8 <ehr>-Client-ID = 087fee8d-4259-49ae-8da9-99bdeeb33636 Authorization = Basic ZW1wOjExNTU6ZXBpYw== ... and setting up Basic authorization. Nothing seems to work. I did not edit the XML doc, because the project file is from my team lead, who was successfully communicating with the API via ReadyAPI. Just wondering if version 5.0.0 is too old or I missed something. Thanks.6.5KViews0likes3CommentsGroovy Script to delete test cases that begin with value
Disclaimer - My knowledge of Groovy is very limited. I basically require a groovy script within my test case to delete test steps that begin with 'Order'. I have tried this below, but to no avail, but that's kind of what I want. No idea if the syntax is correct or not! testSuite.removeTestStep.startswith(Order) This script would ideally be at the bottom of the test case and delete all the test steps that begin with the word 'Order' Any help would be greatly appreciated. Many Thanks. Ben1.4KViews0likes5CommentsHow to add test execution result with statuses of steps from API
Hello, i am working to integrate my c# and MSTest solution to cucumber studio, we are using BDD format scenarios/tests and need to add test execution results with status for each step, but as you see from the screenshot, there is no such support for it... can you help me with that?Solved7.1KViews0likes8Comments