メインコンテンツにスキップ

getComputedLabel

要素の計算されたWAI-ARIAラベルを取得します。

使用方法
$(selector).getComputedLabel()
getComputedLabel.js
it('should demonstrate the getComputedLabel command', async () => {
await browser.url('https://www.google.com/ncr')
const elem = await $('*[name="q"]');
console.log(await elem.getComputedLabel()); // outputs: "Search"
})
戻り値
  • <String> return: 計算されたWAI-ARIAラベル

Welcome! How can I help?

WebdriverIO AI Copilot