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)
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.
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