How to read particular value based on key using robotframework
I am trying to read particular value from csv by passing the key parameter
file.csv-> has below items
Param_Name,Param_Value
res_name,res123
id_name,123
robotfile.csv->
ReadCSV
[Arguments] ${paramname}
@{list}= read csv file to list ${CURDIR}${/}file.csv
${dict1}= Set Variable ${list}
:FOR ${node} IN @{dict1}
\ Log To Console ${node[1]}['${paramname'}]
${Read_Name}= ReadCSV res_name
expected:res123 Actual: None