Are Intel Evo Laptops Suitable for Extensive API Load Testing with ReadyAPI?
Hey member, I’m considering using an Intel Evo laptop for some intensive API load testing with ReadyAPI, but I’m not sure if it’s up to the task. These laptops are known for their speed and responsiveness, but I’m wondering if they can handle the demands of extensive API load testing without compromising performance. Has anyone here tried running heavy-duty API tests on an Intel Evo laptop? How does it hold up in terms of processing power and stability during long testing sessions? Would love to hear your thoughts and experiences before I make a decision. Thanks in advance! Jonathan Jone13Views0likes0Commentsevent handler target to exclude a specific test suite
Hi all, in my current test project, I want an event (TestRunListener.beforeRun) to be run before each test case except of the test cases of one certain test suite. Example: Testsuite 1 - TestcaseA, Testcase B Testsuite 2 - Testcase C Testsuite Utils - Testcase Utils A, Testcase UtilsB The event should only be executed for all Testcases except UtilsA and Utlis B. I tried some Regexes in the target field, which resulted in the event not being executed at all. How can this Regex be built for my purpose? Thanks31Views0likes1CommentIs it possible to integrate the Azure TestPlan Test cases and the ReadyAPI tests ?
I have created manual test cases in Azure devops Test Plan. I have automated the manual test case functionality using ReadyAPI. Now i want to link the Azure Test Plan test cases while running the ReadyAPI tests via the Azure pieplines. Is it possible to do so ? I am using the Azure devops extension named "ReadyAPI Test for Azure Devops" and "Publish Test Results" in my pipeline.208Views1like1CommentHow to connect to Azure blob storage in Ready API
How to connect to Azure blob storage Ready API if i have container-sas-url: https://test.window.net/container-name?tx=XXXX container-name: test container credential: client-id: XXXXXXXXXX client-secret: XXXXXXXXXXXXXXXXXXXXXX profile: tenant-id: XXXXXXXXXXXXXXXXXXXXXXXXX34Views1like0CommentsHow do you reuse your ReadyAPI Groovy scripts if you want to run tests in a pipeline?
"Create custom Groovy classes, embed your reusable Groovy scripts into their methods, save them as separate files with the .groovy extension and voila - your Script Library is ready. You just need to point ReadyAPI where to find it (Preferences>ReadyAPI > Script library). If you change anything in those external classes, ReadyAPI will detect this and reload the classes automatically." Does this work if you're running the tests in a pipeline or from a commandline on your local machine? How would you point your commandline run script to the groovy script library? And where would you recommend keeping this library if it is being used in multiple projects? We have multiple projects but kept within the same repo (not using git's integration with readyapi, as this doesn't allow for multiple projects in the same repo). Ideally what I want is for someone to pull down the tests from git and then just open up readyApi and be able to run the tests. I don't want them to have to do lots of configuration to be able to run the tests.166Views0likes2Commentshow to change test step name when save test results
Hi, I'm trying to save test result into a file with following scripts. def pName = context.currentStep.testCase.testSuite.project.name //get project name def pDate = new Date().format( 'yyyyMMdd' )//get current date def sDate = pDate.toString()//convert date to string def pTestSuite = context.currentStep.testCase.testSuite.name//get TestSuite name def pTestCase = context.currentStep.testCase.name//get TestCase name def filePath = 'E:/Data/Dean Ding/CRD files/CRD_results_test/'+pName+'_'+sDate+'/'+pTestSuite+'/'+pTestCase+'/'//compose the folder path File file = new File(filePath) if (!file.exists()) file.mkdirs()//create the destination folder fos = new FileOutputStream(filePath+ testStepResult.testStep.label + '.txt', true) pw = new PrintWriter( fos ) testStepResult.writeTo( pw ) pw.close() fos.close() but as my test step name contains symbols like : , " such special symbols which not accepted when create txt file due to naming convention, as there are more than 1000 cases it will take such long time to change my test step name,I found script to replace those symbols but don't know how to make it change when use above script to save test results. It will be much appreciated if anyone can provide the scripts.197Views0likes2CommentsTestEngine external JAR files - error - unable to resolve class
Background - We have test engine hosted on some linux server and we execute tests suing CURL cmd or POSTMAN. Given some external JARs When we add external JARs in /bin/ext folder of test engine server and re-start the test engine And run the tests using curl command from locally or using POSTMAN Then it throws error for groovy script test step saying unable to resolve class <className present in external JARs> on import statement itself. We have also configured .vmoptions of test engine server to read ext JARs but still it throws error. Locally, In ReadyAPI, we are placing those JARs in /bin/ext/ folder and it works perfectly fine. Any solution to this problem?203Views1like2CommentsSoapUI Groovy to save Requests and Responses in a txt file
How can I save my REST project in SoapUI Open Source all requests and responses that was ran to a txt file divided in sections test by test. I would like to use a Groovy code to do it, Please may someone help me? Example: Test 1 - Title Request code Response code Test 2 - Title Request code Response code I tried to save the Dump File but I need all request and response information with titles and all test steps together in the same file. How can I solve my problem using REST API and save all requests and responses that was ran? Thank you too munch!226Views0likes1CommentRunning api tests in parallel
I am used to creating api tests using nunit and specflow. With this setup, the tests can run in parallel. Tests can be grouped so that, although you are running your tests in parallel, the tests in the group still run in series. For example, lets say one of your tests is to create an object ... well after you create the object, you might want to delete the object (clean up) ... so you would want to run these test in series because there is a dependency.Solved306Views0likes1Comment