where do you get your test data

Solutions on MaxInterview for where do you get your test data by the best coders in the world

showing results for - "where do you get your test data"
Giovanni
14 Jun 2017
1When=> sprint planning meeting
2	Who=> Mostly I get test data from PO
3    However in some instances, especially in 
4    negative test scenario I may need to 
5    generate test data.
6    I use java faker to generate data
7	How => Faker faker=new Faker();
8    or String manupilation(substring concatination etc.)
9	I store it  at SharePoint. Saved in my project
10    in xls type under data package 
11
12    For API Part: I use "https://www.mockaroo.com/" ==>
13    generates multiple format (CSV, JSON, XML, etc)
Luisa
10 Sep 2018
1Test data is the data that is used by 
2the testers to run the test cases. 
3Whilst running the test cases, 
4testers need to enter some input data. 
5To do so, testers prepare test data. 
6It can be prepared manually and also by using tools.
7
8For example, To test a basic login 
9functionality having a user id, password
10fields. We need to enter some data
11in the user id and password fields.
12So we need to collect some test data.
Mats
11 Jan 2018
1Test data is the data that is used by 
2the testers to run the test cases. 
3Whilst running the test cases, 
4testers need to enter some input data. 
5To do so, testers prepare test data. 
6It can be prepared manually and also by using tools.
7
8For example, To test a basic login 
9functionality having a user id, password
10fields. We need to enter some data
11in the user id and password fields.
12So we need to collect some test data.
13