Skip to content

Instantly share code, notes, and snippets.

@CVertex
Created November 26, 2015 01:57
Show Gist options
  • Select an option

  • Save CVertex/d3d19bb888e4a6e93614 to your computer and use it in GitHub Desktop.

Select an option

Save CVertex/d3d19bb888e4a6e93614 to your computer and use it in GitHub Desktop.
$('.table-itc-testers tr.ng-scope').each(function(i,val) {
var el = $(val);
var email = el.find('td:nth-child(2)').find('span:first').text()
//console.log(email)
var name = el.find('td:nth-child(3)').find('span:first').text();
console.log(name + ','+email);
});
@CVertex

CVertex commented Nov 26, 2015

Copy link
Copy Markdown
Author

Run in Safari console when viewing iTC external testflight testers

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment