大家!
所以我有这个实习代码:
'Home page navigation bar: first load': function() {
return util.createPage(this, '/')
.then(function(){console.log('masuk');});
}
我想像这样进行调试,但我不想打印
masuk
,而是要打印我制作的页面的所有HTML源代码。我怎样才能做到这一点?谢谢。
最佳答案
假设createPage
返回一个Command链,则可以执行以下操作:
util.createPage(this, '/')
.getPageSource()
.then(function (source) {
console.log(source);
});
getPageSource方法从当前聚焦的浏览器窗口或框架请求HTML。