Skip to content

Instantly share code, notes, and snippets.

@laiso
Created August 5, 2015 07:52
Show Gist options
  • Save laiso/66f85da14805dd1cff90 to your computer and use it in GitHub Desktop.
Save laiso/66f85da14805dd1cff90 to your computer and use it in GitHub Desktop.
Export UDIDs in Beta by Crashlytics
$(".device-toggle").click();
setTimeout( () => {
var testers = $('.device .identification');
var udids = [].map.call(testers, (tester) => {
var udid = tester.querySelector('.identifier').textContent;
var name = tester.querySelector('.device-name').textContent;
return `${udid}, ${name}`
});
console.log(udids.join("\n"))
}, 3000);
@laiso
Copy link
Author

laiso commented Aug 10, 2016

no longer does't work 😢

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