使用 Nightwatch,如何从 ELEMENT 实体获取 DOM 元素及其属性?

Using Nightwatch, how do you get the DOM element, and it's attributes from the ELEMENT entity?

我注意到一些奇怪的行为,即视图中存在的元素没有被守夜人定位。为了准确查看可见的内容,我想遍历 nightwatch 打开的视图,获取它可以定位的每个元素的列表,并从该结果中获取有关这些元素是什么的相关信息。我已经能够 'find' 具有以下所有元素:

 browser.elements('css selector', 'div', function (elements) {
   elements.value.forEach(function(element){
     console.log('result', element)
   })
 })

要注意的是结果是一系列的:{ ELEMENT: '0.9107972990792419-3' }

如何从守夜人 ELEMENT 中获取 class 以及有关该元素的所有其他相关信息?

谢谢!

为此您需要使用 .elementIdAttribute

browser.elements('css selector', 'div', function(elements) {
  elements.value.forEach(function(element){
    browser.elementIdAttribute(element.ELEMENT, 'class', function(attribute) {
      console.log(attribute.value);
    });
  });
});