I want to test & validate the data from two different sources at the same time using robot framework.


I'm stuck & I don't know how to proceed further. I've come up with code as far now
${row_count}= get element count ${basic_info_table_row}
Should Be Equal As Integers ${row_count} 12
${column_count}= get element count ${basic_info_table_column}
Should Be Equal As Integers ${column_count} 2
${row_list}= BuiltIn.Create Dictionary
FOR ${row} IN RANGE ${row_count}+1
${row_text} get text ${basic_info_table_row}
log to console ${row_text}
END
Right now what happening is, it just taking the first row and just logging the the first row again & again. 