SoapUI NG Pro
  • Preface
  • 1. About SoapUI NG Pro
    • 1.1 Introduction to SoapUI NG Pro
    • 1.2 Application Installation Instructions
    • 1.3 License installation instructions
  • 2. Ready API - How to use
    • 2.1 Creation of Project:
    • 2.2 Test Case Creation
    • 2.3 Assertions
      • Assertions - In Nutshell
      • Groovy Request and Response Save
      • Script Assertion
    • 2.4 Data Driven Testing
  • 3. Execution in SoapUI NG Pro
    • 3.1 Running Tests From Test Steps
    • 3.2 Running Tests From Test Suites
    • 3.3 Running Test From Project Level
  • 4. Report Generation in SoapUI NG Pro
    • 4.1 Test case Level
    • 4.2 Test Suite Level
    • 4.3 Project Level
  • 5. Continuous Integration
    • 5.1 Jenkins ReadyAPI - Installation instruction
    • 5.2 CreateTests from Jenkins
    • 5.3 Run Tests from Jenkins
    • 5.4 Resolve License errors in Jenkins
Powered by GitBook
On this page

Was this helpful?

  1. 5. Continuous Integration

5.2 CreateTests from Jenkins

Previous5.1 Jenkins ReadyAPI - Installation instructionNext5.3 Run Tests from Jenkins

Last updated 5 years ago

Was this helpful?

Creation of tests in the form of free style projects.

Steps to create tests

  1. Create new job from Jenkins

  2. Navigate to Dashboard Click on New Item

  1. Go to Build section. Select Execute Windows batch command

Enter the following commands into it

cd C:\Program Files\SmartBear\ReadyAPI-1.9.0\bin
testrunner.bat -FPDF -f "C:\Test\Reports" -R"ProjectReport" C:\Test\<projectName>.xml

If you want to rename the report from Project report to a desired name it is not possible directly in soapui ng pro. However, we can create an additional build step in jenkins to rename using the following command wherein the %ReportName% depicts the String parameter used in Jenkins project.

cd C:\Test\Reports
rename "ProjectReport.pdf" "%ReportName%.pdf"

Save the project.