根据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();
}
[ 是否可以将TypeScript或JavaScript文件导入elementExplorer /交互式Protractor会话中?