Anyone have a suggestion on how to get the total rows in a table? Below is what I came up with. It would be great if RPA.Browser had a keyword like RPA.Table has “Get Table Dimensions”.
# Count the number of rows in the table
${row_count}= Set Variable ${0}
FOR ${row_count} IN RANGE 2 100
${results}= Run Keyword And Ignore Error Get Table Cell id:MyTable ${row_count} 3
Exit For Loop If '${results}[0]'!='PASS'
END
# Get the data from each row
FOR ${i} IN RANGE 2 ${row_count}
${_lname}= Get Table Cell id:MyTable ${i} 3
${_fname}= Get Table Cell id:MyTable ${i} 5
${_IP_Phone}= Get Table Cell id:MyTable ${i} 6
${_m_phone}= Get Table Cell id:MyTable ${i} 7
${_email}= Get Table Cell id:MyTable ${i} 8
${_workgroups}= Get Table Cell id:MyTable ${i} 9
${_title}= Get Table Cell id:MyTable ${i} 10
END