linagora / openpaas-gatling

Load test scenarios for the OpenPaaS software suite
Other
1 stars 7 forks source link

openpaas-gatling#19: Provided a way to load the main.js file #20

Closed itswillta closed 3 years ago

itswillta commented 3 years ago

Resolves https://github.com/OpenPaaS-Suite/openpaas-gatling/issues/19.

Example usage:

  def openCalendarSPA(): ChainBuilder = {
    group("openCalendarSPA") {
      exec(LoginSteps.loadLoginTemplates)
        .exec(LoginSteps.login())
        .exec(StaticAssetsSteps.loadIndexHtmlAndMainJs(CalendarSpaName)) // CalendarSpaName = "calendar"
       //...
    }
  }