量角器交互式调试会话(elementExplorer)-如何导入.ts或.js文件?

时间:2018-07-26 08:16:38

标签: typescript debugging protractor

根据Protractor Debugging,我通过键入以下内容开始量角器交互式会话:

protractor --elementExplorer

我有TypeScript文件,其中定义了我想在交互式会话中使用的其他方法。

我注意到不可能将它们从源文件复制粘贴到elementExplorer:似乎elementExplorer试图执行每一行。

例如,将不允许使用复制粘贴以下方法:

getElement(elTitle: string) {
    return this.getElements().filter(function(elem) {
        return elem.getAttribute('title').then(function(text) {
            return text === elTitle; });
        }).first();
}

[when copy pasting method definition[2] 是否可以将TypeScript或JavaScript文件导入elementExplorer /交互式Protractor会话中?

0 个答案:

没有答案