Scrape table using td?

New to WebScraper, but having an awesome time with it. Finalized my first site scrape and working on another one. I'm trying to scrape the following site but having trouble getting the email out of the table because that column doesn't have a header. I tried adding another item to the list of headers, but it wasn't returning anything. I'm guessing I might have to make a child of it? Any help would be apprecited. I just discovered there might be another issue getting started with the sitemap, but will need to debug later. Help with the table would be great!

Url: http://www.conxemar.net/Conxemar2019/es/Company/Details/1669995

Sitemap:
{"_id":"conxemar","startUrl":["http://www.conxemar.net/Conxemar2019/es/Company/Search"],"selectors":[{"id":"pagination","type":"SelectorElementClick","parentSelectors":["_root","pagination"],"selector":".col-xs-8 form","multiple":true,"delay":"2000","clickElementSelector":"li:nth-of-type(n+3) a.k-link, span.k-state-selected","clickType":"clickOnce","discardInitialElements":"discard-when-click-element-exists","clickElementUniquenessType":"uniqueText"},{"id":"linkSelector","type":"SelectorLink","parentSelectors":["pagination"],"selector":"h5 a","multiple":false,"delay":0},{"id":"logo","type":"SelectorImage","parentSelectors":["linkSelector"],"selector":"img#mainImageCompany","multiple":false,"delay":0},{"id":"direccion","type":"SelectorText","parentSelectors":["linkSelector"],"selector":"div.form-group:nth-of-type(2) span","multiple":false,"regex":"","delay":0},{"id":"localidad","type":"SelectorText","parentSelectors":["linkSelector"],"selector":"div:nth-of-type(3) span","multiple":false,"regex":"","delay":0},{"id":"codigopostal","type":"SelectorText","parentSelectors":["linkSelector"],"selector":"div.form-group:nth-of-type(4) span","multiple":false,"regex":"","delay":0},{"id":"provincia","type":"SelectorText","parentSelectors":["linkSelector"],"selector":"div:nth-of-type(5) span.companyloc","multiple":false,"regex":"","delay":0},{"id":"ccaa","type":"SelectorText","parentSelectors":["linkSelector"],"selector":"div:nth-of-type(6) span.companyloc","multiple":false,"regex":"","delay":0},{"id":"pais","type":"SelectorText","parentSelectors":["linkSelector"],"selector":"div.form-group:nth-of-type(7) span","multiple":false,"regex":"","delay":0},{"id":"telefono","type":"SelectorText","parentSelectors":["linkSelector"],"selector":"div.form-group:nth-of-type(8) span","multiple":false,"regex":"","delay":0},{"id":"email","type":"SelectorText","parentSelectors":["linkSelector"],"selector":".contact__text__list__item span a","multiple":false,"regex":"","delay":0},{"id":"web","type":"SelectorText","parentSelectors":["linkSelector"],"selector":"span a[target]","multiple":false,"regex":"","delay":0},{"id":"facebook","type":"SelectorText","parentSelectors":["linkSelector"],"selector":"div.form-group:nth-of-type(11) a","multiple":false,"regex":"","delay":0},{"id":"twitter","type":"SelectorText","parentSelectors":["linkSelector"],"selector":"div.form-group:nth-of-type(12) a","multiple":false,"regex":"","delay":0},{"id":"linkedin","type":"SelectorText","parentSelectors":["linkSelector"],"selector":"div.form-group:nth-of-type(13) a","multiple":false,"regex":"","delay":0},{"id":"stand","type":"SelectorText","parentSelectors":["linkSelector"],"selector":"div.form-group:nth-of-type(14) span","multiple":false,"regex":"","delay":0},{"id":"categoria","type":"SelectorText","parentSelectors":["linkSelector"],"selector":"div:nth-of-type(15) span","multiple":false,"regex":"","delay":0},{"id":"contactos","type":"SelectorTable","parentSelectors":["linkSelector"],"selector":"table","multiple":true,"columns":[{"header":"Contacto","name":"Contacto","extract":true},{"header":"Cargo","name":"Cargo","extract":true}],"delay":0,"tableDataRowSelector":"tbody tr","tableHeaderRowSelector":"thead tr"}]}

Type: Table would not would work well here. You'll need to build scrapers for each row, and use better selectors, e.g.

{"_id":"forum-conxemar","startUrl":["http://www.conxemar.net/Conxemar2019/es/Company/Details/1669995"],"selectors":[{"id":"Company","type":"SelectorText","parentSelectors":["_root"],"selector":"h1.section__title","multiple":false,"regex":""},{"id":"Provincia","type":"SelectorText","parentSelectors":["_root"],"selector":"div.row.contact__container div[class^='form-group']:contains('Provincia') span","multiple":false,"regex":""},{"id":"Paid","type":"SelectorText","parentSelectors":["_root"],"selector":"div.row.contact__container div[class^='form-group']:contains('País') span","multiple":false,"regex":""},{"id":"Teléfono","type":"SelectorText","parentSelectors":["_root"],"selector":"div.row.contact__container div[class^='form-group']:contains('Teléfono') span","multiple":false,"regex":""},{"id":"E-mail","type":"SelectorText","parentSelectors":["_root"],"selector":"div.row.contact__container div[class^='form-group']:contains('E-mail') span","multiple":false,"regex":""}]}