انتقل إلى المحتوى الرئيسي

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