タグ結果

This page is not available in the language you requested. You have been redirected to the English version of the page.
Link to this page copied to clipboard
Not for use with personal data

タグ付けは、スキャンにメタデータを追加する便利な機能であり、 axe Developer Hub UIに表示されます。チームにとって便利なタグには、チーム名、ビルド番号、シミュレーターバージョンなどがあります。

タグが付けられたスキャンは、組織内の全員に見えるのに対し、タグがないスキャンは作成したユーザーにのみ見えます。

タグ付きスキャンを送信する

設定オブジェクトにキーを追加し、追加したいタグの値を設定します。以下のJavaScriptの例では、"v0.0.1" と "iOS 17.4"の2つのタグを使用して、スキャンがダッシュボードに送信されます。注意: タグは tags キーの有無にかかわらず追加できます。 axeSettings scanName

const axeSettings = { 
  apiKey: '<deque-api-key>', 
  projectId: '<devhub-project-id>',
  scanName: '<your-scan-name-here>', 
  tags: ['v0.0.1', 'iOS 17.4'] 
}

const result = await driver.execute('mobile: axeScan', axeSettings)