Skip to content
#

gatling

Here are 172 public repositories matching this topic...

anasmi
anasmi commented Oct 12, 2019

It would be nice to pass multiple actions to a checkIf method , the same way as a check allows through the comma.

So, for example, instead of writing this:

.check(
   checkIf("${first.exists()}")(do_first),
   checkIf("$first.exists()}")(do_second), 
   checkIf("${first.exists()}")do_third)

it would be nice to have API as follows:

check(checkIf("${first.exists()}")(do
artemkorsakov
artemkorsakov commented Aug 12, 2020

Please, add getBooleanParam to SimulationConfig:

object SimulationConfig {

  def getStringParam(path: String): String           = simulationConfig.get[String](path)
  def getIntParam(path: String): Int                 = simulationConfig.get[Int](path)
  def getDoubleParam(path: String): Double           = simulationConfig.get[Double](path)
  def getDurationParam(path: String): Finite

Improve this page

Add a description, image, and links to the gatling topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the gatling topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.