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

getComputedRole

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

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

Welcome! How can I help?

WebdriverIO AI Copilot