返回在其父级子元素列表中紧接在指定元素之前的元素。该元素将作为 Web 元素 JSON 对象返回(带有附加的 .getId() 方便方法)。

有关在 Nightwatch 中使用 DOM 元素的更多信息,请参阅查找和与 DOM 元素交互 指南页面。

用法

                    browser.element(selector).getPreviousElementSibling()
                

示例

export default {
  demoTest(browser: NightwatchAPI): void {
    browser.element('.features-container li:second-child').getPreviousElementSibling().then(resultElement => {
      console.log('previous sibling element Id:', resultElement.getId());
    });
  },

  async demoTestAsync(browser: NightwatchAPI): Promise<void> {
    const resultElement = await browser.element('.features-container li:second-child').getPreviousElementSibling();
    console.log('previous sibling element Id:', resultElement.getId());
  }
}

返回

类型 描述
ScopedWebElement