Questions tagged [taurus]

Automation-friendly framework for Continuous Testing using JMeter, Selenium and other tools.

Taurus is a project on github under Blazemeter.

Official Website: https://gettaurus.org/

Taurus is a free and open source framework for Continuous Testing which helps you by hiding the complexities of running performance tests. Think of it as an automation-friendly wrapper - it cloaks nicely around JMeter, neatly covering all of its complexities and imperfections.

When running JMeter through Taurus you can:

  1. Run an existing JMeter script
  2. Create a new JMeter script very easily using a YAML text file
  3. Automate your script with Jenkins
165 questions
0
votes
1 answer

Parallel and distributed execution of multiple scenarios in taurus

I have following requirements to execute the performance test via Taurus. Requirements: 1. A single jmx on multiple(distributed) jmeters 2. For every Jmeter an unique IP address to be passed at run time 3. For every Jmeter a set of unique .csv path…
0
votes
1 answer

Taurus - Getting error on running jmx test and yml test

I already have installed JMeter 5.X, I don't know why bzt is trying to download it again. I edited the .bzt-rc file. Provided path of installed JMeter. Below code from .bzt-rc file. path: C:\001_team\apache-jmeter-5.2.1\bin # path to local jmeter…
born2Learn
  • 1,253
  • 5
  • 14
  • 25
0
votes
1 answer

Multiple json body files in single scenario in taurus

I have the following taurus yaml scenario with 40 iterations and 40 json files. I am passing those 40 body json files in the body-file tag. but when i run the yaml i can see only one request running and not all 40. Please help in this…
0
votes
1 answer

Taurus execution on a remote host(aws)

(New to Taurus) I am able to execute the tests using Taurus from local machine. But I want to run these tests on a remote aws instance (JMeter should run on aws). Pls let me know what the config(.yml file entries) for the same. Thanks
0
votes
1 answer

Taurus. Reusing common scenario with different variables

Taurus allows me combine scenarios like this scenarios: create-bob-account: requests: - url: http://example.com/account/create method: POST body: account_owner: bob account_number: 123 create-lisa-account: …
V. Kuznetsov
  • 609
  • 1
  • 7
  • 18
0
votes
1 answer

Specify Taurus test as a Blazemeter Functional test

How do I tell Taurus that my (Postman/Newman) test is a Blazemeter Functional test, and not a Performance test? Below is my bzt.yaml I created with the help of https://gettaurus.org/docs/Postman/. execution: - executor: newman iterations: 1 …
user2762956
  • 120
  • 1
  • 9
0
votes
2 answers

Taurus error when try to check response code

I am trying to assert the response for a HTTP GET execution: - executor: selenium scenario: dashboard iterations: 1 reporting: - module: final-stats dump-xml: results/test.xml dump-csv: results/test2.csv - module: junit-xml filename:…
user8710571
  • 405
  • 2
  • 12
  • 25
0
votes
1 answer

Jmeter - login - cookies issue

I have an app to test that needs a user to login. The user can login only into one session per time. When he logs in, session cookie gets generated. My Jmeter script is like this 'HTTP Cookie Manager' 'HTTP Request --> /' 'HTTP…
NewUser123
  • 99
  • 9
0
votes
1 answer

Login test using Taurus

Test login action using Taurus execution: - concurrency: 5 ramp-up: 5 hold-for: 1m scenario: Buyer-logs-in scenarios: Buyer-logs-in: variables: baseurl: http://localhost:3000 default-address: ${baseurl} …
NewUser123
  • 99
  • 9
0
votes
1 answer

Cannot override execution.iterations in taurus

This is my config that I'm trying to override by cli: execution: - concurrency: 1 iterations: 20 hold-for: 0s ramp-up: 0s scenario: delete scenarios: delete: ... When I try bzt ./myconfig.yml -o execution.iterations=100, I'm getting…
HaC
  • 902
  • 12
  • 24
0
votes
1 answer

How to pass in Content-Type and base64 value as a user in Taurus?

I'm trying to assign a user value which is base64 characters and the Content-Type which is "application/x-www-form-urlencoded". In my postman Content-Type is under Headers and user under body. Therefore i structured my yaml script like below :…
0
votes
1 answer

How to pass in the token and Cookie in Taurus

I'm trying to pass in the token and the cookie to my script. When i try to run it with Taurus i get the below error: ERROR : Config Error: You must specify either a JMX file or list of requests to run JMeter How do i pass token and cookie in my…
user8050674
  • 41
  • 1
  • 8
0
votes
2 answers

COPY into a new docker image does not work

I want to add a JAR in a new image. Whenever i build the new image with the COPY command the build passes but whenever i go to the container in bash the file is not present and my Jmeter test fails. I want to add the tika-app-1.20.jar to my new…
0
votes
1 answer

Execute requests from the scenario in random order [Taurus/JMeter]

I have a pretty big load test scenario for execution that I want to run with Taurus. It has more than 1000 different requests - some of them in loops because I would like them to execute several times. Now that I have the scenario completed I'm…
nikitz
  • 1,051
  • 2
  • 12
  • 35
0
votes
2 answers

Taurus Proxy Issue

I am using Taurus for first time. I am configuring the same on windows. I have installed Taurus and trying to convert Selenium to Jmeter Script. I am following the below reference…