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

العنصر الأب

يُرجع العنصر الأب لعنصر DOM المحدد.

الاستخدام
$(selector).parentElement()
أمثلة
index.html
<div class="parent">
<p>Sibling One</p>
<p>Sibling Two</p>
<p>Sibling Three</p>
</div>
parentElement.js
it('should get class from parent element', async () => {
const elem = await $$('p');
const parent = await elem[2].parentElement()
console.log(await parent.getAttribute('class')); // outputs: "parent"
});
الناتج
  • <WebdriverIO.Element>

Welcome! How can I help?

WebdriverIO AI Copilot