LoginSignup
1
1

More than 5 years have passed since last update.

Beta by Crashlytics (fabric.io) のテスターのUDID一覧を取得する

Posted at

Beta by Crashlytics にはUDIDのエクスポート機能がないのでテスター一覧画面からJavaScriptでがんばって抜き出します(泣ける)

es6
$(".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);
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1