Here is how to get the 1st TD row:
Add a new column called "1st_row" based on:
value.parseHtml().select("table#ctl00_ContentPlaceHolder1_cab_ubigeo1_gvAutUbigeo tr td")[0].toString()
where [0] on the end is the 1st one...if you want the second one, use [1]
If it helps, then just Break up the chore by continuing to create a new columns based on the old one...(Add column based on...)
Where you need to use toString() on the end to output a string that parseHtml() can parse over.
So start by populating a single column for getting ALL the "td_rows" with (just omit the [0], which means "the first one"):
value.parseHtml().select("table#ctl00_ContentPlaceHolder1_cab_ubigeo1_gvAutUbigeo tr td").toString()
So you next column of "cargo" can then be created based on the "td"rows column and parsed again with:
value.parseHtml().select("td")[0].htmlText()
Also you can experiment with forEach() as well if you want to...learn and have fun !