我正在尝试调试这种事情:
browser
.chain
.session()
.open('/')
.type('q', 'Hello World')
.click('btnG')
.waitForTextPresent('Hello World')
.getTitle(function(title){
assert.ok(~title.indexOf('hello world'), 'Title did not include the query: ' + title);
})
.click('link=Advanced search')
.waitForPageToLoad(2000)
.assertText('css=#gen-query', 'Hello World')
.assertAttribute('as_q@value', 'Hello World')
.end(function(err){
browser.testComplete(function(){
console.log('done');
if (err) throw err;
});
});
我已经设法直接使用node debug app.js
或使用node-inspector
and连接调试器chrome
。但是,当我尝试在 处创建断点时.click('btnG')
,它不起作用,它只会在链的末尾创建一个断点。node.js
似乎将整个链条视为单个语句。
您如何逐步调试这种链接?如何在其中注入 REPL?谢谢你!