0
我試圖使用夜巡.element()
方法來檢索從網頁的元素:Nightwatch.js方法`.element()`返回「[對象的對象]」
browser.element('class name', 'story-share-tools', function (res) {
console.log(res);
});
的res
參數正被顯示在控制檯爲[object Object]
,並且看起來不是WebElement JSON對象。
我需要包含無序列表的實際HTML元素story-share-tools
,其中包含要迭代的項目。