Skip to content

Instantly share code, notes, and snippets.

@mandyklingbeil
mandyklingbeil / extract-testflight.js
Last active December 15, 2016 17:46 — forked from creaoy/extract-testflight.js
Extract TestFlight user email addresses from iTunes Connect
//Make sure you scroll down to get all data loaded
var text = '';
$('.col-email').each(function(index,el) {
if (index == 0) {
text = 'Number, Email, First Name, Last Name, Status, Date, Year\n';
}
else {
//Email
text = text + $.trim($(el).find("a").text()) + ',';
//First Name