پرش به محتوای اصلی

المنت قبلی

المنت خواهر قبلی المنت DOM انتخاب شده را برمی‌گرداند.

استفاده
$(selector).previousElement()
مثال‌ها
index.html
<div class="parent">
<p>Sibling One</p>
<p>Sibling Two</p>
<p>Sibling Three</p>
</div>
previousElement.js
it('should get text from previous sibling element', async () => {
const elem = await $$('p');
const previousElem = await elem[1].previousElement()
console.log(await previousElem.getText()); // outputs: "Sibling One"
});
برمی‌گرداند
  • <WebdriverIO.Element>

Welcome! How can I help?

WebdriverIO AI Copilot