How to run specific test case in particular environment?
I have 2 environments setup : Dev & QA. There are certain test cases which are intended for Dev env only. How I avoid running those when I select QA environment? or when I select Dev env, only dev environment specific test cases run?622Views0likes5CommentsIs 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.209Views1like1CommentAutomation script in ReadyAPI for Authentication
Hi, I am new to Ready API. I am trying to authenticate the user credentials and set it up as the script inside Auth Manager so that we can run the ready API test suites from the pipeline automatically. Manual set up for authentication is working fine and we are able to call the APIs and get results. We use Oauth2.0 authentication. The automation script that I have is not working. I am not sure what I am missing. This is what I tried referring to this document: https://support.smartbear.com/readyapi/docs/requests/auth/types/oauth2/automate/index.html var loginForm = document.querySelectorAll(".ab.cd"); var username = document.getElementById("username").value; var password = document.getElementById("password").value; var loginBtnForm = document.querySelector(".c2"); var loginBtn = document.querySelectorAll(".c3.c4.c5.c6.c7"); document.getElementById("username").value = "testusername"; document.getElementById("password").value = "testpassword"; loginBtn.click();168Views1like6CommentsMigrating Ready API SOAP tests to Rest based Test
We are in the process of transitioning our platform, which was originally built using SOAP services, to REST-based services. Currently, we have over 1000 ReadyAPI automation scripts designed for SOAP services. Are there any straightforward methods or tools available to facilitate the migration of these tests to work seamlessly with REST services? We appreciate any guidance or assistance. Thank you in advance. Note: No change in the functionality related to existing services.82Views0likes5CommentsCommand Line Runner - Set HTTPSettings encoded urls
We are running ReadyAPI within our CI/CD Pipelines using the command line runner. What would be an appropriate way to set the encoded URL option within the HTTPSettings using the command line arguments? We would like to forego needing to define a complete custom readyapi-settings.xml. If however necessary, is it possible to construct a minimal readyapi-settings.xml? If so, do templates exist?32Views0likes2CommentsWhy readyAPI does not let me have multiple file content to create a file as an output?
Hello all, After running my test steps, I want to create a file (adding another test step) with the previous test steps request and results as an output, but in the file content it does not let me have more than one data source from my test steps using 'get data'. It automatically rewrites the previous data if I want to add an additional data source to create the file as an output. But if I copy the data sources individually and paste it on a word document, and then copy the whole thing and paste it there( in the file content) ; then it keeps the sources but after running the test it keeps on giving me an error saying ' (The file name, directory name, or volume label syntax is incorrect) Appreciating your assistance in advance.Solved56Views0likes2CommentsTestEngine 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?206Views1like2CommentsHow to use the External JAVA libraries with Test Engine hosted on Linux
We are using the Test Engine to run our Ready API test suites and this server is a Linux machine. We are referring the java library (com.jcraft.jsch.*) within groovy script and this is used for file upload. this works fine while running the test in local with the Ready API application but while the same test with Test Engine, this suites fails as Test Engine is not able to find the the reference of java library(refere below error). Can you help us with below questions * Is there a default location which the Test Engine looks for external library reference? * Is there a way to have our own custom path for external reference and let the Test Engine refer this path? We looked into the official documentation, it has the details of path for Ready API but not for Test Engine434Views0likes3Commentsrunning TestEngine in github workflow
I am trying to integratesmartbear/ready-api-soapui-testrunner:latest through a custom github workflow. Problem is, whenever I launch the docker container with this command: docker run -e LICENSE_SERVER="" -e COMMAND_LINE="-sMyTestSuite -cMyTestCase -rJUnit-Style-Report.xml -ehttp://laravel-test:8000 -Dbase_url=http://laravel-test:8000"-v ".":/project -v "./reports":/reports smartbear/ready-api-soapui-testrunner:latest, it throws this: Exception in thread "main" java.lang.RuntimeException: org.apache.commons.cli.MissingArgumentException: Missing argument for option: s I am using the first approach specified herehttps://hub.docker.com/r/smartbear/ready-api-soapui-testrunner/: docker run -v="Project Folder":/project -v="Report Folder":/reports -v="Extensions Folder":/ext -e LICENSE_SERVER="License Server Address" -e COMMAND_LINE="Test Runner Arguments" -it smartbear/ready-api-soapui-testrunner:latest155Views0likes0CommentsReadyAPI cannot get token: No enum constant com.eviware.soapui.impl.rest.actions.oauth.OAuth2Paramet
Hi there, I need help, my ReadyAPI was able to refresh token with no issue, but recently I cannot get any token. I got below error from the log: "No enum constant com.eviware.soapui.impl.rest.actions.oauth.OAuth2Parameters.PKCEChallengeMethod.Not defined" Me and our team are using Client Credential Grant and it has been working properly until recently. I don`t recall any change on the OAuth2 config So any idea how to fix this?? We need to fix this urgently. Thanks536Views0likes3Comments