Skip to content

Instantly share code, notes, and snippets.

@andrewapperley
andrewapperley / extract-testflight.js
Last active April 19, 2016 12:57 — forked from creaoy/extract-testflight.js
Extract TestFlight user email addresses from iTunes Connect
var text = '';
$('.col-email').each(function(index,el) {
if (index == 0) {
text = 'Email, First Name, Last Name, Status\n';
}
else {
//Email
text = text + $.trim($(el).find("a").text()) + ',';
//First Name
text = text + $.trim($($($($('.col-name')[index]).find("span")[0]).find("span")[0]).text()) + ',';