Doing a database query that returns multiple rows...
${visits_for_this_patient}= Select from Database
... Select to_char(visit_date, 'YYYY-MM-DD') from patient_visits where patient_id=${patient_id} order by visit_date
${list_of_visits_for_this_patient}= create list ${visits_for_this_patient}
Row Count Should Be Equal To X
... Select * from patient_visits where patient_id=${patient_id}
... ${expected_number_of_patients_for_this_visit}
... ${SPONSOR_NAME}
How can i take a specific row's string value back without the padding? Im getting like
(b'2017-03-03',)
when i try ${visits_for_this_patient[0]}