Skip to main content
January 13, 2021
Question

Regarding the Performance testing tool for Appian

  • January 13, 2021
  • 5 replies
  • 0 views

Hi

Could you please suggest me the appian performance testing tool other then Jmeter

    5 replies

    pedro.simoes
    January 13, 2021

    Hi [mention:9e8cd6758e2f46c3b8d1e69d255a03ca:e9ed411860ed4f2ba0265705b8793d05],

    You can take a look at Locust and see if it meets your needs.

    https://community.appian.com/b/appmarket/posts/appian-locust

    prems0003Author
    January 13, 2021
    class WebsiteUser(HttpUser):
        wait_time = between(5, 15)
        
        def on_start(self):
            self.client.post("/login", {
                "username": "test_user",
                "password": ""
            })
        
        @task
        def index(self):
            self.client.get("/")
            self.client.get("/static/assets.js")
    Here @task means the BPM task in workflow of Appian BPM right??
    I mean here we are testing invidual task of a process model or Workflow
    pedro.simoes
    January 13, 2021

    [mention:9e8cd6758e2f46c3b8d1e69d255a03ca:e9ed411860ed4f2ba0265705b8793d05], I suggest you take a look at the documentation that is referred in the AppMarket link

    https://appian-locust.readthedocs.io/en/stable/quick_start.html

    For more questions on how to use the plugin, please make them in the AppMarket link so it can be leveraged later by other Community members