Is it possible to pass parameters in Gherkin Language
Example
*** Variables ***
@{DEVICE}= 1 2
&{Identification} = HWID=1 BootloaderID=2 SWID=3
*** Test cases ***
Host details for @{DEVICE}[0]
Given that device @{DEVICE}[0]
When the @{DEVICE}[0] exists and functioning properly
then verify that HWID should be equal to ${Identification.HWID.value}
And BootloaderID should be equal to ${Identification.BootloaderID.value}
And SWID should be equal to ${Identification.SWID.value}
Could you please let me know whether this is possible in Robot Framework with Gherkin Language Syntax. I tried running this test case but I am getting errors.
Sorry, Now attaching the error I am getting
No keyword with name ‘When the @{DEVICE}[0] exists and functioning properly’ found. Did you mean:
the “${Input}” exists and functioning properly