This table looks like impossible to grab to my eyes

I tryed to select something but it click and surf instead to select something.. and I have to exit from the selector clickcing in the red button CANCEL to exit..

and this too:

Both the tables are loaded in an iframe, which you can access directly (URLs can be seen in page source):
https://catania.portalefipav.net/elenco-societa.aspx?PId=4129 https://verona.portalefipav.net/elenco-societa.aspx?PId=9088

1 Like

super thanks but then I am not able to grab the emails into both of these links..:
{"_id":"fipavverona-it","startUrl":["https://verona.portalefipav.net/elenco-societa.aspx?PId=9088"],"selectors":[{"id":"nome","multiple":true,"parentSelectors":["_root"],"regex":"","selector":"td:nth-of-type(2)","type":"SelectorText"},{"id":"email","linkType":"linkFromHref","multiple":true,"parentSelectors":["_root"],"selector":"a[title='Invia una email alla societĂ ']","type":"SelectorLink"}]}

{"_id":"fipavcatania-it","startUrl":["https://catania.portalefipav.net/elenco-societa.aspx?PId=4129"],"selectors":[{"id":"nome","multiple":true,"parentSelectors":["_root"],"regex":"","selector":"td:nth-of-type(2)","type":"SelectorText"},{"id":"email","linkType":"linkFromHref","multiple":true,"parentSelectors":["_root"],"selector":"a[title='Invia una email alla societĂ ']","type":"SelectorLink"}]}

I solved withthe second webisite copying a bit your way to work, I used element on the table and then element attribute on the emails plus I added this text by hand to grab the emails:

td:nth-of-type(7) a
{"_id":"fipavcatania-it","startUrl":["https://catania.portalefipav.net/elenco-societa.aspx?PId=4129"],"selectors":[{"id":"element","multiple":true,"parentSelectors":["_root"],"selector":"div#BoxId_16232","type":"SelectorElement"},{"extractAttribute":"href","id":"email","multiple":true,"parentSelectors":["element"],"selector":"td:nth-of-type(7) a","type":"SelectorElementAttribute"},{"id":"nome","multiple":true,"parentSelectors":["element"],"regex":"","selector":"td:nth-of-type(2)","type":"SelectorText"}]}

Thanks again!