Skip to content

Instantly share code, notes, and snippets.

@CVertex
Created May 27, 2013 09:25
Show Gist options
  • Select an option

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

Select an option

Save CVertex/5656077 to your computer and use it in GitHub Desktop.
Extract UDIDs and Device names from Apple dev portal
// open the devices portal and run this in chrome console
var rows = $('#grid-table tr');
rows.each(function(i,val) {
var udid = $(val).find('td[aria-describedby=grid-table_deviceNumber]').html();
var name = $(val).find('td[aria-describedby=grid-table_name]').html();
console.log(udid + '\t' + name);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment