Facing Issues with Converged Networking and ReadyAPI 3.45 by SmartBear – Need Some Advice!
Hey member, I’m reaching out because I’m experiencing issues withconverged networkingwhile runningReadyAPI 3.45 by SmartBear. My goal is to optimize the network for efficient resource usage, but I’ve been facing recurring connectivity issues and performance inconsistencies during API testing. This particularly impacts data transmission and causes delays in response times, which can throw off our test results and make it difficult to identify real issues from network-related problems. For context, we’re running a converged network setup to unify data, storage, and network traffic, but it seems ReadyAPI might be sensitive to certain configurations or load balancing behaviors. I’ve tried adjusting some basic network settings, but the inconsistencies still occur. Has anyone here encountered similar challenges with ReadyAPI in a converged networking environment? I’m curious if there are specific network configurations, firewall rules, or resource allocation strategies that have worked for others. Additionally, any insights on potential ReadyAPI settings that could help stabilize connectivity would be really helpful. I’m also open to recommendations on best practices for managing network traffic in testing environments where multiple types of traffic are converged. Looking forward to hearing your thoughts, and thanks in advance for any advice! Best, Jonathan Jone12Views0likes0CommentsReadyAPI project password need to reset .
I recently created a password for my project, but it has stopped working, and I'm unable to load the encrypted properties. The password is visible in my settings.xml, but when I try to load the project, it fails with an error message. Can anyone suggest how to resolve this issue? --- ReadyAPI24Views0likes2CommentsAre 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 Jone15Views0likes0Commentsevent 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? Thanks34Views0likes1CommentIs 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.209Views1like1CommentHow 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: XXXXXXXXXXXXXXXXXXXXXXXXX35Views1like0CommentsHow 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.171Views0likes2Commentshow 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.205Views0likes2CommentsTestEngine 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?206Views1like2Comments