Will you recommend Saraf furniture? | Insaraf Furniture Reviews
Yes Saraf Furniture is the safe place to shop all your furniture need under one roof. My recent experience with Saraf Furniture is very positive Saraf Furniture Reviews. I ordered an item, Book Shelf and Study Table it was delivered with 5 days. The quality were perfect. I had also ordered a Sofa via online. And its looks amazing and very comfortable. I have always got genuine products with read outstanding Insaraf Furniture Reviews. The delivery is fast and the staff has been very courteous. There is hassle free return process just make sure the tags and packaging is intact. Overall Satisfied with my purchase.20Views0likes0CommentsSupport soapui-maven-plugin Java 17
Hi folks, i want to know if the soapui-maven-plugin support java 17. Currently we have some Soap Webservices and a lot of automatic Test are running with the plugin but i am not sure if plugin support Java 17 because the api goes to Jakarta and will be running under jakarta packagename. Thanks a lot for the Community.SolvedGetting test steps in the correct order
I have a javascript which boils down to the following: var testSteps = testRunner.testCase.testSteps.values().toArray(); for (var i = 0; i < testSteps.length; i++) { log.info(testSteps[i].getName()); } When I run this, it will print out the test steps in the current test case. However, this does not print them out in the order they appear in the UI. For Example, I have the following testCase: When I run the script in this testCase, I get the following output: Tue Aug 08 12:02:16 CEST 2023:INFO:> Groovy Script Tue Aug 08 12:02:16 CEST 2023:INFO:> Another step Tue Aug 08 12:02:16 CEST 2023:INFO:> GenerateReport How can I get these testSteps in the correct order (so first GenerateReport, then Groovy Script and then Another step) SoapUI version: 5.2.1Solved1.1KViews0likes8CommentsHow to save to a file
I am using SoapUO 5.7.0 and i have a Execute query to get data. I get the data but i need to automate this through a windows schedule and have it run to create a file for me on a daily basis. Have any one done that where you can run it and create a file? Any advice it would be greatly apprecited. Thank you, AndrewSolved473Views0likes2CommentsHTTP/1.0 503 Service Unavailable
Hi, I have a problem with sending reports via SoapUI. After sending 1 report successfully, I'm unable to send the second one because of this error. I have to restart SoapUI every time after sending a single report. I have to send over 400 reports which is a problem when you have to restart the program every time you send a report. Is there any way to fix that?332Views0likes0Comments"Response Message" tab as report
Hello, I have a request. I need help with the following problem: 1/ I have a script with a loop that loads different data into the same method. 2/ All loops run fine and I am able to capture the result of the last loop and save the results of the response. 3/ I can see the responses of the previous loops in the "TestCase" window. 4/ When I open (click) each step in TestCase, I can see the results in the "MessageExchange Result" window on the "Response Message" tab. Please, how is it possible to save the results from the "Response Message" tab, for example as an external CSV file? I have tried via TearDown Script, but without success. I have SoapUI 5.5.0 (open source) Thank you and have a nice day. Marek309Views0likes0CommentsConnecting TO DB using Groovy Script
Using groovy script in SOAP UI, I was able to connect to the DB previously You can find the code I used before as below: import groovy.sql.Sql String url = 'jdbc:oracle:thin:@hostname:1521/servername' String user = 'username' String password = 'password' sql = Sql.newInstance( url, user, password, 'oracle.jdbc.driver.OracleDriver') This was working fine. Later client has added some certificates for validations for the DB and port also getting changed from 1521 to 1523. later then I was unable to connect to DB from SOAP UI using groovy. I can still connect to the DB using DBeaver or SQL developer applications, by using the oracle client as InstantClient and inside which we have placed the certificates from client in Wallet. And driver we used previously in DBeaver is Oracle thin, but now we have to create a new driver Oracle OCI. But it will be more helpful for us if it works in SOAP Ui as we have automated the steps in SOAP UI. Can we have any way to use the certificate path in Groovy script to validate the certificates from path and also defining new driver Oracle OCI.428Views0likes0CommentsReRun only Fail test steps in SoapUI Groovy script .
Hi All , Need urgent help ,I am new to SoapUI I need to rerun failed steps using groovy script . I tried with below code but getting "Errorjava.lang.NumberFormatException: null jerror at line: 2" . Can some one help with the solution please . import com.eviware.soapui.model.testsuite.TestRunner.Status //Rerun failed test cases X amount of times based off the number set in the RerunCount test suite property def reRunCount = Integer.parseInt(testSuite.getPropertyValue("3")) for ( testCaseResult in runner.results ) { /* * Dans SoapUI les statuts sont FINISHED ou FAILED * Dans ReadyAPI, les statuts sont PASS ou FAIL */ if ( testCaseResult.getStatus().toString() == 'FAIL' || testCaseResult.getStatus().toString() == 'FAILED' ) { def tRun for (i = 0; i < reRunCount; i++) { tRun = testCaseResult.testCase.run(null, false) //Need to have "true" as the second argument log.info("Run..." + testCaseResult.getTestCase().name) if(tRun.getStatus().toString() == "PASS"){ runner.status = Status.FINISHED //Change test suite status to PASS break; } } } }383Views0likes0Commentsadd a message or property to a specific test step?
Hi, I'm running a TestCase in which a script loops through a csv file and fires off a single REST request with different values each time, which come from the csv. This all works fine. However, I'm trying to create a report (based on this tutorial:https://dzone.com/articles/how-to-achieve-csv-reporting-in-soapui-open-source-1) and I want to include (a part of) the response from each time the request is called. Example: the request (let's call it Request1) is called twice by the groovy test step, first with value "name":"AAA", and then with value "name":"BBB". For the first request, the response is: "result":"hello". For the second request the response is: "result":"bye". What I want is for the report to include both instances of the test step with their corresponding response, like this (csv formatting): test case, test step, response, status case1, request1, hello, OK case1, request1, bye, OK I tried to do this using properties but they are on the level of test case, and since the reporting script is called after the test case is finished, both requests will get the 'bye' response in the report. I know there is something like 'messages' which is on the level of a single iteration of a test step, but I can't find a way to add a custom message. The messages I do get are from the assertions in the request. Does anyone know how I can achieve this?409Views0likes0Comments