Great. Now I am able to create test case, create Data Drive Test case and use all the Data and Verification activities. Looking forward to see more videos on Test Suite. Thanks Rahul.
@vartikasi2 жыл бұрын
Hi, Thanks for the detailed video. If I want to test particular data row only then how to do that?
@rahulunnikrishnan94232 жыл бұрын
Hi Varthika, If you the know the id you can use that to retrieve the data row. Else you can make all other rows to consumed.Then during the test execution it ll pick the unconsumed row as test data.
@vartikasi2 жыл бұрын
Hi Rahul, Thanks for the reply.... can you pls tell me how to do that using the id? and one more question how to pass test data to test data queue using argument ?
@autobotbyrahul2 жыл бұрын
Hi Vartika, Tried to get it using ID, but its not available for the TestData queue. The Output of Get Test Data Queue Item will fetch only "Json-Content" from the test data queue. If you want to specifically use one row, maybe you can try to use a for loop and loop through the dictionary & use a if condition for any of the column to retrieve the specific data. But suggestable is to mark the other rows as consumable and use the unconsumed Test data.
@vartikasi2 жыл бұрын
@@autobotbyrahul Thanks for the update.
@shilpasoni05162 жыл бұрын
Hi, I want to know how we can use test data queues in running test sets including test cases with multiple test data. Could you please help?
@autobotbyrahul2 жыл бұрын
Hello Shilpa, You can use the ID in the Test Queue to get specific data for each test case. So if your Testdata is having multiple test cases it can use different rows of Data based on the ID. Hope that can solve your issue.🙂
@allthecommonsense Жыл бұрын
"Multiple test data" is ambiguous. It sounds like you mean different schemas of test data, in which case you would need to create a different queue for each type (shape) of test data any given test case needs.
@DFCE822 жыл бұрын
Your tutorials are great man! 🔝 What's the advantage of the queue? For my understanding it's easier to use an excel file with testdata and use this excel file directly in the testcase by adding the the excel file in context menu of the testcase (add testdata). No need to create a json file like its necessary when using the data queue.
@autobotbyrahul2 жыл бұрын
If you are going with queue multiple testcases can access the same items instead of assigning to a specific testcase.