Answers for "datatables in cucumber"

0

datatables in cucumber

Cucumber allows us to pass multiple data under one step.
We can accept that data and store it under many different 
categories such as, list, map...
syntax: Given something is happening user should see all of the following
        |apple| |orange||kiwi|        
Whatever data we pass on the feature file 
will always come from feature files as EXPECTED DATA
It can be some list of links that we are trying to verify
It can be some options from a dropdown that we are trying to verify
it can be any set of data that we are trying to verify from the browser.
We pass the expected data in feature file. 
Then we get the actual data from browser and we compare
Posted by: Guest on May-29-2021

Browse Popular Code Answers by Language