I am using the X-ray JS package to scrape a table from a page. Desired tags and attributes are specified using an array of CSS selectors in a JSON string.
"{[ 'th, td' ]}"
correctly gets content from all th
and td
tags.
I additionally need the img
tags within td
so I capture icons.
What selectors string would do that?