タグ結果

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 に表示されます。チームにとって役立つタグには、チーム名、ビルド番号、シミュレーターのバージョンなどがあります。

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

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

設定オブジェクトにキーtagsを追加し、追加したいタグの値を入力してください。以下のJavaScriptの例では、2つのタグ「v0.0.1」と「iOS 17.4」を使用してスキャンがダッシュボードにプッシュされます。注:タグはaxeSettingsscanNameキーを使用しても、使用しなくても追加できます。

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)