Thank you very much! I am student from Russia and this video helped to me in my studding work.
@KumarS12 жыл бұрын
You are welcome!
@Divyaaaaaaaaaa102 жыл бұрын
Could you please share a demo on joining data frames and validating with a reference dataset
@zozonoaroro6201 Жыл бұрын
Is it possible to link a cucumber feature scenario outline with a xlsx or CSV file in pytest bdd framework
@KumarS1 Жыл бұрын
I have not tried that, its not possible out of box. Nor I find any plugins or anything for that. thanks!
@deepthiguduru2 жыл бұрын
Can we pass JSON file as input data for mark.parameterize ? I have a JSON File which has array of JSON Objects. Each JSON Object in an array is a testcase , and testcases should continue eventhough one testcase fails with Assertion Error ? Can we achieve with mark.parameterize ?
@KumarS12 жыл бұрын
Yes we can do that. The testdata to be passed to the parametrize function has to be a list. So you may need to modify the input json data a bit before passing it. The get_data function can be used to read json and return list here. thanks.. kumar