Created
May 27, 2013 09:25
-
-
Save CVertex/5656077 to your computer and use it in GitHub Desktop.
Extract UDIDs and Device names from Apple dev portal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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