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

الحصول على التسمية المحسوبة

الحصول على تسمية 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