I am integrating load runner in azure pipeline using load runner plugin in i have created pipeline as follows
trigger:
- none
pool: vmImage: 'windows-latest'
steps:
task: ExecuteLoadRunnerProfessional@0 inputs: ControllerUrl: 'http://serverURL:port' UserName: 'username' Password: 'Password' Domain: '' Project: 'Projectname' TestId: 'testid' TestInstance: 'Instance name' TimeslotDuration: '60'
PostRunAction: 'Collate and Analyze' ReportName: 'loadtest_Report' ReportType: 'HTML' ReportPath: '$(System.DefaultWorkingDirectory)\res' FailTaskOnErrors: true FailTaskOnSLA: true IgnoreSSL: true displayName: 'Run LoadRunner Enterprise Test'
I am getting following log - There are no scenario found.
I have tried command line approach as well getting same log error
I am looking for the solution on the above question. I want to execute scenario file from the controller using azure pipeline
The pipeline task
ExecuteLoadRunnerProfessional@0comes from the extension LoadRunner Professional Tests Automation - Visual Studio Marketplace, whose introduction states thatFrom the information that you shared, your pipeline was running on Microsoft-hosted
windows-latestagent.Please follow the guidance in Continuous integration with Azure DevOps (microfocus.com) to setup proper environment and configure you pipeline to run on that agent machine.